From: Alexander Barton Date: Fri, 20 Aug 2010 13:40:03 +0000 (+0200) Subject: Don't include Mac OS X resource forks in tar archives X-Git-Tag: rel-2~12 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=nagcollect.git;a=commitdiff_plain;h=6b76f2469e3b6ba5dfd12738cafcc33e64787c17;hp=901e26f52db8d0916b6808f06151512db2231fdf Don't include Mac OS X resource forks in tar archives --- diff --git a/Makefile b/Makefile index 9e9c832..aad396b 100644 --- a/Makefile +++ b/Makefile @@ -58,12 +58,14 @@ check: dist: distclean dir=`basename $${PWD}` \ && cd .. \ - && tar cvzf "$${dir}.tar.gz" --exclude .git "$${dir}" + && COPYFILE_DISABLE=true tar cvzf "$${dir}.tar.gz" \ + --exclude .git "$${dir}" distcheck: check dist nagcollecttestscripts: - tar -czvf nagcollecttestscripts.tgz -C client/lib/tests . + COPYFILE_DISABLE=true tar -czvf nagcollecttestscripts.tgz \ + -C client/lib/tests . .PHONY: all install install-all install-server install-client \ clean distclean check dist distcheck nagcollecttestscripts