Merge lp:~brianaker/gearmand/update-bootstrap-june into lp:gearmand

Proposed by Brian Aker
Status: Merged
Merged at revision: 779
Proposed branch: lp:~brianaker/gearmand/update-bootstrap-june
Merge into: lp:gearmand
Diff against target: 89 lines (+15/-16)
1 file modified
bootstrap.sh (+15/-16)
To merge this branch: bzr merge lp:~brianaker/gearmand/update-bootstrap-june
Reviewer Review Type Date Requested Status
Tangent Trunk Pending
Review via email: mp+170743@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bootstrap.sh'
--- bootstrap.sh 2013-06-10 06:48:59 +0000
+++ bootstrap.sh 2013-06-21 06:23:39 +0000
@@ -430,7 +430,7 @@
430 ret=$?430 ret=$?
431 ;;431 ;;
432 *)432 *)
433 run $CONFIGURE $BUILD_CONFIGURE_ARG433 run $CONFIGURE "$BUILD_CONFIGURE_ARG"
434 ret=$?434 ret=$?
435 ;;435 ;;
436 esac436 esac
@@ -1507,6 +1507,9 @@
15071507
1508execute_job ()1508execute_job ()
1509{1509{
1510 # We should always have a target by this point
1511 assert MAKE_TARGET
1512
1510 determine_target_platform1513 determine_target_platform
15111514
1512 determine_vcs1515 determine_vcs
@@ -1518,10 +1521,6 @@
1518 return 11521 return 1
1519 fi1522 fi
15201523
1521 if [ -z "$MAKE_TARGET" ]; then
1522 MAKE_TARGET="make_default"
1523 fi
1524
1525 if $print_setup_opt -o $debug; then1524 if $print_setup_opt -o $debug; then
1526 echo 1525 echo
1527 print_setup1526 print_setup
@@ -1541,9 +1540,6 @@
1541 PREFIX_ARG="--prefix=$PREFIX"1540 PREFIX_ARG="--prefix=$PREFIX"
1542 fi1541 fi
15431542
1544 # We should always have a target by this point
1545 assert MAKE_TARGET
1546
1547 if $CLEAN_OPTION; then1543 if $CLEAN_OPTION; then
1548 make_maintainer_clean1544 make_maintainer_clean
1549 fi1545 fi
@@ -1551,10 +1547,6 @@
1551 local MAKE_TARGET_ARRAY1547 local MAKE_TARGET_ARRAY
1552 MAKE_TARGET_ARRAY=( $MAKE_TARGET )1548 MAKE_TARGET_ARRAY=( $MAKE_TARGET )
15531549
1554 if $jenkins_build_environment; then
1555 use_banner $target
1556 fi
1557
1558 for target in "${MAKE_TARGET_ARRAY[@]}"1550 for target in "${MAKE_TARGET_ARRAY[@]}"
1559 do1551 do
1560 # If we are running inside of Jenkins, we want to only run some of the possible tests1552 # If we are running inside of Jenkins, we want to only run some of the possible tests
@@ -1566,6 +1558,10 @@
1566 fi1558 fi
1567 fi1559 fi
15681560
1561 if $jenkins_build_environment; then
1562 use_banner $target
1563 fi
1564
1569 local snapshot_run=false1565 local snapshot_run=false
1570 local valgrind_run=false1566 local valgrind_run=false
15711567
@@ -1619,10 +1615,6 @@
1619 ;;1615 ;;
1620 'mingw')1616 'mingw')
1621 make_distclean1617 make_distclean
1622 if ! check_mingw; then
1623 die "mingw was not found"
1624 fi
1625
1626 if ! make_for_mingw; then1618 if ! make_for_mingw; then
1627 die "Failed to build mingw: $?"1619 die "Failed to build mingw: $?"
1628 fi1620 fi
@@ -1766,6 +1758,13 @@
1766 fi1758 fi
1767 fi1759 fi
17681760
1761 if [ -z "$MAKE_TARGET" ]; then
1762 MAKE_TARGET="make_default"
1763 fi
1764
1765 # We should always have a target by this point
1766 assert MAKE_TARGET
1767
1769 execute_job1768 execute_job
1770 local ret=$?1769 local ret=$?
17711770

Subscribers

People subscribed via source and target branches

to all changes: