]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Update generated-files logic.
authorWayne Davison <wayned@samba.org>
Sun, 26 Apr 2015 23:25:56 +0000 (16:25 -0700)
committerWayne Davison <wayned@samba.org>
Sun, 26 Apr 2015 23:50:41 +0000 (16:50 -0700)
Makefile.in
prepare-source

index a5ea668c328adf4a089b3d54bc8ded9dac1b6820..5f825527dea8a5f26a6afb570865489057d5a54d 100644 (file)
@@ -28,7 +28,7 @@ VERSION=@RSYNC_VERSION@
 .SUFFIXES:
 .SUFFIXES: .c .o
 
-GENFILES=configure.sh config.h.in proto.h proto.h-tstamp rsync.1 rsyncd.conf.5
+GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp rsync.1 rsyncd.conf.5
 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h itypes.h inums.h \
        lib/pool_alloc.h
 LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o lib/md5.o \
index 0e73138d1ce92e5719faf74691289eecba7f7dd4..b1e762828ea3ae9be6970ff099bd21b6cbccd911 100755 (executable)
@@ -27,9 +27,9 @@ for action in "${@}"; do
        ;;
     fetch)
        if perl --version >/dev/null 2>/dev/null; then
-           files='c*'
+           files='[ca]*'
        else
-           files='[cp]*'
+           files='[cap]*'
        fi
        rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" .
        ;;