From: Ben Laurie Date: Fri, 10 Jun 2016 11:07:32 +0000 (+0100) Subject: Omit corpora from tarball. X-Git-Tag: OpenSSL_1_1_0-pre6~499 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a1bce642c9a704943df3a897d3a7345790d45a43;p=oweals%2Fopenssl.git Omit corpora from tarball. Reviewed-by: Richard Levitte --- diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 217625d7e9..c595fd84e5 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -706,7 +706,7 @@ tags TAGS: FORCE # Release targets (note: only available on Unix) ##################### -TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf - +TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf - PREPARE_CMD=: tar: TMPDIR=/var/tmp/openssl-copy.$$$$; \ @@ -714,6 +714,7 @@ tar: mkdir -p $$TMPDIR/$$DISTDIR; \ (cd $(SRCDIR); \ git ls-tree -r --name-only --full-tree HEAD \ + | grep -v '^fuzz/corpora' \ | while read F; do \ mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \ cp $$F $$TMPDIR/$$DISTDIR/$$F; \