Fixed a thinko and a typo in the --append option.
[rsync.git] / configure
index dec14ab02c51d62154db8ff6a657cd9b3850fcdb..48d41eb98a51f325bd4f7bb0661c6952c8035587 100755 (executable)
--- a/configure
+++ b/configure
@@ -7,28 +7,19 @@ dir=`dirname $0`
 realconfigure="$dir/configure.sh"
 
 if test ! -f "$realconfigure"; then
-    if test x"$dir" != x -a x"$dir" != x.; then
-       curdir=`pwd`
-       cd "$dir"
-    else
-       curdir=''
-    fi
     if test -f "$HOME/build_farm/build_test.fns"; then
        # Allow the build farm to grab latest files via rsync.
-       fetch=fetch
+       actions='build fetch'
     else
-       fetch=''
+       actions='build'
     fi
-    if ./prepare-source $fetch; then
+    if "$dir/prepare-source" $actions; then
        :
     else
        echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2
        rm -f "$realconfigure"
        exit 1
     fi
-    if test x"$curdir" != x; then
-       cd "$curdir"
-    fi
 fi
 
 exec "$realconfigure" "${@}"