File: configure

package info (click to toggle)
rsync 3.0.3-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,472 kB
  • ctags: 3,518
  • sloc: ansic: 35,122; sh: 4,882; perl: 1,415; makefile: 267; python: 83
file content (25 lines) | stat: -rwxr-xr-x 687 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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`
realconfigure="$dir/configure.sh"

if test ! -f "$realconfigure"; then
    if test -f "$HOME/build_farm/build_test.fns"; then
	# Allow the build farm to grab latest files via rsync.
	actions='build fetch'
    else
	actions='build'
    fi
    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
fi

exec "$realconfigure" "${@}"