Commit 3005a12b authored by Wayne Davison's avatar Wayne Davison

Only allow the build farm to rsync the latest generated

configure files when building them fails.
parent fd913297
......@@ -16,8 +16,12 @@ if [ ! -f "$realconfigure" ]; then
make -f prepare-source.mak proto.h
if make -f prepare-source.mak conf; then
:
else
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
exit 1
fi
if test x"$curdir" != x; then
cd "$curdir"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment