Fixed a problem with --fake-super not getting the fully tweaked new_mode
[rsync/rsync.git] / configure
1 #!/bin/sh -e
2 # This configure script ensures that the configure.sh script exists, and
3 # if not, it tries to fetch rsync's generated files or build them.  We
4 # then transfer control to the configure.sh script to do the real work.
5
6 dir=`dirname $0`
7 realconfigure="$dir/configure.sh"
8
9 if [ ! -f "$realconfigure" ]; then
10     if test x"$dir" != x -a x"$dir" != x.; then
11         curdir=`pwd`
12         cd "$dir"
13     else
14         curdir=''
15     fi
16     make -f prepare-source.mak proto.h
17     if make -f prepare-source.mak conf; then
18         :
19     elif [ -f "$HOME/build_farm/build_test.fns" ]; then
20         # Allow the build farm to grab latest files via rsync.
21         rsync -avz rsync://rsync.samba.org/rsyncftp/generated-files/'c*' .
22     else
23         echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2
24         rm -f "$realconfigure"
25         exit 1
26     fi
27     if test x"$curdir" != x; then
28         cd "$curdir"
29     fi
30 fi
31
32 exec "$realconfigure" "${@}"