Mention updated config files.
[rsync.git] / configure
index 0e6139320ee9fb49a805af649c7c7843ad315cec..51c3fee581f73853fde74b2b887a0468790706e5 100755 (executable)
--- a/configure
+++ b/configure
@@ -4,24 +4,24 @@
 # then transfer control to the configure.sh script to do the real work.
 
 dir=`dirname $0`
-realconfigure="$dir/configure.sh"
+if test x"$dir" = x; then
+    dir=.
+fi
 
-if [ ! -f "$realconfigure" ]; then
-    if test x"$dir" != x -a x"$dir" != x.; then
-       curdir=`pwd`
-       cd "$dir"
-    else
-       curdir=''
-    fi
-    make -f prepare-source.mak proto.h
-    if make -f prepare-source.mak conf; then
-       :
-    else
-       rsync -avz rsync://rsync.samba.org/rsyncftp/generated-files/'c*' .
+if test "$dir" = '.'; then
+    branch=`packaging/prep-auto-dir` || exit 1
+    if test x"$branch" != x; then
+       cd build || exit 1
+       dir=..
     fi
-    if test x"$curdir" != x; then
-       cd "$curdir"
+fi
+
+if test ! -f configure.sh; then
+    if ! "$dir/prepare-source" build; then
+       echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2
+       rm -f configure.sh
+       exit 1
     fi
 fi
 
-exec "$realconfigure" "${@}"
+exec ./configure.sh --srcdir="$dir" "${@}"