From: Thibault Godouet Date: Sat, 10 May 2014 17:20:03 +0000 (+0100) Subject: don't include debug files in tar X-Git-Tag: ver3_1_3~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7028ecbd54c088d0d17d9d11d5a24172f0e36d5b;p=thirdparty%2Ffcron.git don't include debug files in tar --- diff --git a/.gitignore b/.gitignore index d8d4524..17c2b5a 100644 --- a/.gitignore +++ b/.gitignore @@ -30,4 +30,4 @@ configure tests/test-open* tests/test-types* tests/test-uidgid* - +debug/ diff --git a/Makefile.in b/Makefile.in index b9767de..c201904 100644 --- a/Makefile.in +++ b/Makefile.in @@ -314,7 +314,7 @@ tar: configure updatedoc vclean ciclean $(MAKE) -C doc tarclean - @(find ./ -type f ! -regex '.*RCS.*' ! -regex '.*CVS.*' ! -regex '.*\.git.*'| \ + @(find ./ -type f ! -regex '.*RCS.*' ! -regex '.*CVS.*' ! -regex '.*\.git.*' ! -regex '.*debug/.*'| \ sed -e "s:^\./:fcron-$(VERSION)/:" > MANIFEST) @(cd ..; ln -s fcron fcron-$(VERSION)) (cd ..; tar -czvf fcron-$(VERSION).src.tar.gz `cat fcron/MANIFEST`)