From: Rich Salz Date: Tue, 24 Feb 2015 22:45:08 +0000 (-0500) Subject: Remove CVS filtering from find targets X-Git-Tag: OpenSSL_1_1_0-pre1~1615 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b8aa1a2af738f93b535798bfc07069aada264e1;p=openssl Remove CVS filtering from find targets Reviewed-by: Richard Levitte --- diff --git a/Makefile.org b/Makefile.org index c932a6a24e..4f5bff96e8 100644 --- a/Makefile.org +++ b/Makefile.org @@ -515,7 +515,7 @@ tar: find . -type d -print | xargs chmod 755 find . -type f -print | xargs chmod a+r find . -type f -perm -0100 -print | xargs chmod a+x - find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \ + find * \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \ $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \ tardy --user_number=0 --user_name=openssl \ --group_number=0 --group_name=openssl \ @@ -526,7 +526,7 @@ tar: tar-snap: @$(TAR) $(TARFLAGS) -cvf - \ - `find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \! -name '*.so' \! -name '*.so.*' \! -name 'openssl' \! -name '*test' \! -name '.#*' \! -name '*~' | sort` |\ + `find * \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \! -name '*.so' \! -name '*.so.*' \! -name 'openssl' \! -name '*test' \! -name '.#*' \! -name '*~' | sort` |\ tardy --user_number=0 --user_name=openssl \ --group_number=0 --group_name=openssl \ --prefix=openssl-$(VERSION) - > ../$(TARFILE);\