From 421ec277c1067c48478559b0e9a1a27d3c021aaf Mon Sep 17 00:00:00 2001 From: clanmills Date: Fri, 7 Jul 2017 08:34:34 +0100 Subject: [PATCH] Fix COPYFILE_DISABLE=1 tar cxf in website/bin/buildrelease.sh https://github.com/Exiv2/exiv2/issues/14 --- website/bin/buildrelease.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/bin/buildrelease.sh b/website/bin/buildrelease.sh index daa7d3ee26..650bf375d8 100755 --- a/website/bin/buildrelease.sh +++ b/website/bin/buildrelease.sh @@ -63,9 +63,9 @@ echo ========================================================================== echo Creating source and doc packages echo cd .. -tar zcvf exiv2-$rel-doc.tar.gz exiv2-$rel/doc/index.html exiv2-$rel/doc/html exiv2-$rel/doc/include +COPYFILE_DISABLE=1 tar zcvf exiv2-$rel-doc.tar.gz exiv2-$rel/doc/index.html exiv2-$rel/doc/html exiv2-$rel/doc/include rm -rf exiv2-$rel/doc/html -tar zcvf exiv2-$rel.tar.gz exiv2-$rel +COPYFILE_DISABLE=1 tar zcvf exiv2-$rel.tar.gz exiv2-$rel echo echo ========================================================================== echo Testing the tarball: unpack, build and run tests