diff options
author | Ben Laurie <ben@links.org> | 2016-06-10 12:07:32 +0100 |
---|---|---|
committer | Ben Laurie <ben@links.org> | 2016-06-10 13:00:31 +0100 |
commit | a1bce642c9a704943df3a897d3a7345790d45a43 (patch) | |
tree | 41529aa0f086a07f2e72a54903730b9134575f1d /Configurations | |
parent | d4a28f9cf82f0c80bd38903a923b40b1398c7631 (diff) |
Omit corpora from tarball.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
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; \ |