File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / rsync / configure
Revision 1.1.1.3 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 00:32:36 2021 UTC (3 years, 2 months ago) by misho
Branches: rsync, MAIN
CVS tags: v3_2_3, HEAD
rsync 3.2.3

#!/bin/sh -e
# This configure script ensures that the configure.sh script exists, and
# if not, it tries to fetch rsync's generated files or build them.  We
# then transfer control to the configure.sh script to do the real work.

dir=`dirname $0`
if test x"$dir" = x; then
    dir=.
fi

if test "$dir" = '.'; then
    branch=`packaging/prep-auto-dir` || exit 1
    if test x"$branch" != x; then
	cd build || exit 1
	dir=..
    fi
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 ./configure.sh --srcdir="$dir" "${@}"

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