Annotation of embedaddon/rsync/configure, revision 1.1.1.3

1.1       misho       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`
1.1.1.3 ! misho       7: if test x"$dir" = x; then
        !             8:     dir=.
        !             9: fi
1.1       misho      10: 
1.1.1.3 ! misho      11: if test "$dir" = '.'; then
        !            12:     branch=`packaging/prep-auto-dir` || exit 1
        !            13:     if test x"$branch" != x; then
        !            14:        cd build || exit 1
        !            15:        dir=..
1.1       misho      16:     fi
1.1.1.3 ! misho      17: fi
        !            18: 
        !            19: if test ! -f configure.sh; then
        !            20:     if ! "$dir/prepare-source" build; then
1.1       misho      21:        echo 'Failed to build configure.sh and/or config.h.in -- giving up.' >&2
1.1.1.3 ! misho      22:        rm -f configure.sh
1.1       misho      23:        exit 1
                     24:     fi
                     25: fi
                     26: 
1.1.1.3 ! misho      27: exec ./configure.sh --srcdir="$dir" "${@}"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>