Commit 85cdbb6b authored by Wayne Davison's avatar Wayne Davison

Reorganize the build-farm "prepare-source" magic a little.

This makes it easier for a user to request a copy of the
configure scripts via rsync ("./prepare-source fetch").
parent fcb1068f
...@@ -6,23 +6,21 @@ ...@@ -6,23 +6,21 @@
dir=`dirname $0` dir=`dirname $0`
realconfigure="$dir/configure.sh" realconfigure="$dir/configure.sh"
if [ ! -f "$realconfigure" ]; then if test ! -f "$realconfigure"; then
if test x"$dir" != x -a x"$dir" != x.; then if test x"$dir" != x -a x"$dir" != x.; then
curdir=`pwd` curdir=`pwd`
cd "$dir" cd "$dir"
else else
curdir='' curdir=''
fi fi
if make -f prepare-source.mak conf; then if test -f "$HOME/build_farm/build_test.fns"; then
:
elif [ -f "$HOME/build_farm/build_test.fns" ]; then
# Allow the build farm to grab latest files via rsync. # Allow the build farm to grab latest files via rsync.
if perl --version >/dev/null; then fetch=fetch
files='c*'
else else
files='[cp]*' fetch=''
fi fi
rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" . if ./prepare-source $fetch; then
:
else else
echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2 echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2
rm -f "$realconfigure" rm -f "$realconfigure"
......
#!/bin/sh #!/bin/sh
# Use autoconf, autoheader, yodl, etc. to ready the generated files in the # Use autoconf and autoheader to create configure.sh and config.h.in.
# release. This is typically used after applying a diff from the "patches" # If unsuccessful and the "fetch" option was provided, grab the latest
# directory in a CVS-checked-out version. # development versions of these files (only useful with a dev checkout).
#
# NOTE: if you use a diff from the "patches" directory of a *release tar*
# (as opposed to from CVS), this is not needed (but doesn't hurt anything).
dir=`dirname $0` dir=`dirname $0`
if test x"$dir" != x -a x"$dir" != x.; then if test x"$dir" != x -a x"$dir" != x.; then
cd "$dir" cd "$dir"
fi fi
make -f prepare-source.mak if make -f prepare-source.mak; then
:
elif test x"$1" = x"fetch"; then
if perl --version >/dev/null 2>/dev/null; then
files='c*'
else
files='[cp]*'
fi
rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" .
else
exit 1
fi
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