From: Paul Smith Date: Fri, 4 Oct 2002 02:28:59 +0000 (+0000) Subject: Don't put .cvsignore files in the distributed tar file. X-Git-Tag: 3.80~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee9584dc8dd876005c59d549495f5c975205d31d;p=thirdparty%2Fmake.git Don't put .cvsignore files in the distributed tar file. --- diff --git a/Makefile.am b/Makefile.am index c40f18b4..33b498b5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -95,7 +95,7 @@ install-exec-local: # dist-hook: (cd $(srcdir); \ - sub=`find w32 tests -follow \( -name CVS -prune -o -name work -prune \) -o \( -name \*.orig -o -name \*.rej -o -name \*~ -prune \) -o -type f -print`; \ + sub=`find w32 tests -follow \( -name CVS -prune -o -name .cvsignore -o -name work -prune \) -o \( -name \*.orig -o -name \*.rej -o -name \*~ -prune \) -o -type f -print`; \ tar chf - $$sub) \ | (cd $(distdir); tar xfBp -)