]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
ChangeLog, build, flock-build:
authorHarlan Stenn <stenn@ntp.org>
Mon, 23 Apr 2001 04:24:15 +0000 (04:24 -0000)
committerHarlan Stenn <stenn@ntp.org>
Mon, 23 Apr 2001 04:24:15 +0000 (04:24 -0000)
  * 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

ChangeLog
build
flock-build

index 861f7d1a0e88730ba71c03c9e5f5f7531a52c361..268d1470aa7be0edcb7c08cacf8c713e70c3d45e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-04-23  Harlan Stenn  <stenn@whimsy.udel.edu>
+
+       * 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  <stenn@whimsy.udel.edu>
 
        * configure.in (ac_cv_make_tickadj): Fix it right...
diff --git a/build b/build
index c27d09e510fb88de2c6ffb06fe7b6e1b71f52ecb..22252d32593705c05ee80e375f68a2bd66331e3f 100755 (executable)
--- 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
index 4089ddefe20f8e15995bd54beb2a977a3c677998..5e2bb0c06188b8b31ef0f226b5ccadf47fbc9956 100755 (executable)
@@ -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