X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/dc2815c1fb40ff8f40eee6e1eaf57deb7fbf1d3d..5b83829669d9c7e276aeaf8027e112f0aa08dd29:/configure diff --git a/configure b/configure index 811a9d2f..48d41eb9 100755 --- a/configure +++ b/configure @@ -6,27 +6,20 @@ dir=`dirname $0` realconfigure="$dir/configure.sh" -if [ ! -f "$realconfigure" ]; then - if test x"$dir" != x -a x"$dir" != x.; then - curdir=`pwd` - cd "$dir" +if test ! -f "$realconfigure"; then + if test -f "$HOME/build_farm/build_test.fns"; then + # Allow the build farm to grab latest files via rsync. + actions='build fetch' else - curdir='' + actions='build' fi - make -f prepare-source.mak proto.h - if make -f prepare-source.mak conf; then + if "$dir/prepare-source" $actions; then : - elif [ -f "$HOME/build_farm/build_test.fns" ]; then - # Allow the build farm to grab latest files via rsync. - rsync -avz rsync://rsync.samba.org/rsyncftp/generated-files/'c*' . else echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2 rm -f "$realconfigure" exit 1 fi - if test x"$curdir" != x; then - cd "$curdir" - fi fi exec "$realconfigure" "${@}"