From: Harlan Stenn Date: Mon, 23 Apr 2001 04:24:15 +0000 (-0000) Subject: ChangeLog, build, flock-build: X-Git-Tag: NTP_4_0_99_M~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c996e4047e4ad61ab1ff3450ebc71f12b3cecbf2;p=thirdparty%2Fntp.git ChangeLog, build, flock-build: * build: Run "config.status" before the "make" because it probably saves time and trouble. Probably... * flock-build: Try building sequentially. flock-build: * flock-build: Try building sequentially. bk: 3ae3ae6fEGQfm_W1Hbl7X8amyVkMtg --- diff --git a/ChangeLog b/ChangeLog index 861f7d1a0e..268d1470aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-04-23 Harlan Stenn + + * build: Run "config.status" before the "make" because it probably + saves time and trouble. Probably... + + * flock-build: Try building sequentially. + 2001-04-22 Harlan Stenn * configure.in (ac_cv_make_tickadj): Fix it right... diff --git a/build b/build index c27d09e510..22252d3259 100755 --- a/build +++ b/build @@ -74,7 +74,7 @@ cd $BDIR ( [ -f config.status ] || ../configure $CONFIG_ARGS -# ./config.status +./config.status case "$MAKE" in '') make && make check diff --git a/flock-build b/flock-build index 4089ddefe2..5e2bb0c061 100755 --- a/flock-build +++ b/flock-build @@ -30,7 +30,16 @@ esac for i in $LIST do echo $i + case "1" in + 0) ssh $i "cd $c_d ; ./build $SIG $PARSE $BUILD_ARGS" & ssh $i "cd $c_d ; ./build $SIG $PARSE --with-crypto=autokey $BUILD_ARGS" & ssh $i "cd $c_d ; ./build $SIG $PARSE --without-crypto $BUILD_ARGS" & + ;; + 1) ssh $i "cd $c_d ; \ +./build $SIG $PARSE $BUILD_ARGS ; \ +./build $SIG $PARSE --with-crypto=autokey $BUILD_ARGS ; \ +./build $SIG $PARSE --without-crypto $BUILD_ARGS" & + ;; + esac done