source: trunk/third/xntp/flock-build @ 16192

Revision 16192, 969 bytes checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16191, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
1#! /bin/sh
2
3BUILD_ARGS="$@"
4PARSE="--enable-parse-clocks"
5#PARSE=
6
7# * baldwin        sparc-sun-solaris2.7
8#   bridgeport     sparc-sun-solaris2.6
9#   bunnylou       alpha-dec-osf4.0
10# * churchy        alpha-dec-osf4.0
11#   cowbird        alpha-dec-osf4.0
12#   grundoon       sparc-sun-sunos4.1.3
13# * hepzibah       freebsd-2.2.5
14#   malarky        sparc-sun-solaris2.8
15# * pogo           sparc-sun-solaris2.8
16# * porkypine      mips-dec-ultrix4.4
17# * rackety        sparc-sun-sunos4.1.3/cc
18# * snavely        hppa1.1-hp-hpux10.20
19#   whimsy         sparc-sun-solaris2.7
20
21c_d=`pwd`
22
23SIG=`perl -e 'print rand'`
24echo $SIG > .buildkey
25
26case "$LIST" in
27 '') LIST="baldwin churchy hepzibah pogo porkypine rackety snavely" ;;
28esac
29
30for i in $LIST
31do
32    echo $i
33    ssh $i "cd $c_d ; ./build $SIG $PARSE $BUILD_ARGS" &
34    ssh $i "cd $c_d ; ./build $SIG $PARSE --with-crypto=autokey $BUILD_ARGS" &
35    ssh $i "cd $c_d ; ./build $SIG $PARSE --without-crypto $BUILD_ARGS" &
36done
Note: See TracBrowser for help on using the repository browser.