From: Wayne Davison Date: Fri, 30 Nov 2007 07:21:51 +0000 (-0800) Subject: One build-farm system needs to fetch the proto.h* files too. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/bcfb738c93a586283457ea1c7015f321fd1f3f48 One build-farm system needs to fetch the proto.h* files too. --- diff --git a/configure b/configure index cc4bcb63..96198f6b 100755 --- a/configure +++ b/configure @@ -17,7 +17,12 @@ if [ ! -f "$realconfigure" ]; then : elif [ -f "$HOME/build_farm/build_test.fns" ]; then # Allow the build farm to grab latest files via rsync. - rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/'c*' . + if perl --version >/dev/null; then + files='c*' + else + files='[cp]*' + fi + rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" . else echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2 rm -f "$realconfigure"