mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-01-24 14:58:17 -05:00
This makes it easier for a user to request a copy of the
configure scripts via rsync ("./prepare-source fetch").
21 lines
565 B
Bash
Executable File
21 lines
565 B
Bash
Executable File
#!/bin/sh
|
|
# Use autoconf and autoheader to create configure.sh and config.h.in.
|
|
# If unsuccessful and the "fetch" option was provided, grab the latest
|
|
# development versions of these files (only useful with a dev checkout).
|
|
dir=`dirname $0`
|
|
if test x"$dir" != x -a x"$dir" != x.; then
|
|
cd "$dir"
|
|
fi
|
|
if make -f prepare-source.mak; then
|
|
:
|
|
elif test x"$1" = x"fetch"; then
|
|
if perl --version >/dev/null 2>/dev/null; then
|
|
files='c*'
|
|
else
|
|
files='[cp]*'
|
|
fi
|
|
rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" .
|
|
else
|
|
exit 1
|
|
fi
|