From f97b24308b389e6e62d9679a6a07cd94e1940694 Mon Sep 17 00:00:00 2001 From: thib Date: Mon, 1 Mar 2010 09:11:16 +0000 Subject: [PATCH] Updated Makefile to ignore git files when tarring up -- also don't ci on make tar anymore --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index b9654b2..bba9b53 100644 --- a/Makefile.in +++ b/Makefile.in @@ -82,7 +82,7 @@ HEADERSALL := config.h $(SRCDIR)/global.h $(SRCDIR)/log.h $(SRCDIR)/subs.h $(SRC # this is a regular expression : # do not ci automaticaly generated files and doc (done by doc's Makefile) -RCSNOCI:=.*\(.html\|VERSION\|MANIFEST\|configure\|install.sh\|config.log\|config.status\|config.h\|config.cache\|Makefile\|doc.*\|CVS.*\) +RCSNOCI:=.*\(.html\|VERSION\|MANIFEST\|configure\|install.sh\|config.log\|config.status\|config.h\|config.cache\|Makefile\|doc.*\|CVS.*\|.git.*\) RUN_NON_PRIVILEGED := @RUN_NON_PRIVILEGED@ ifeq ($(RUN_NON_PRIVILEGED), 1) @@ -282,13 +282,13 @@ ci: ciclean # ci the doc files make -C doc ci -tar: configure updatedoc vclean ci +tar: configure updatedoc vclean ciclean echo $(VERSION) > ./VERSION make -C doc tarclean - @(find ./ -type f ! -regex '.*RCS.*' ! -regex '.*CVS.*' | \ + @(find ./ -type f ! -regex '.*RCS.*' ! -regex '.*CVS.*' ! -regex '.*\.git.*'| \ sed -e "s:^\./:fcron-$(VERSION)/:" > MANIFEST) @(cd ..; ln -s fcron fcron-$(VERSION)) (cd ..; tar -czvf fcron-$(VERSION).src.tar.gz `cat fcron/MANIFEST`) -- 2.40.0