From: Miek Gieben Date: Mon, 13 Jun 2005 09:44:37 +0000 (+0000) Subject: don't include keys in release/snaphosts tar files X-Git-Tag: release-0.65~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29bbd5a8dbaf01b9d32f3d0b39a9067bd666d5d5;p=thirdparty%2Fldns.git don't include keys in release/snaphosts tar files --- diff --git a/Makefile.in b/Makefile.in index d2ce6442..f6263192 100644 --- a/Makefile.in +++ b/Makefile.in @@ -117,13 +117,13 @@ uninstall-lib: snapshot: realclean (rm -rf ../ldns-snap-$(DATE)/) (cd .. ; cp -r $(basesrcdir)/ ldns-snap-$(DATE)/) - (cd .. ; tar --verbose --exclude ".svn" --create --file ldns-snap-$(DATE).tar.gz --gzip ldns-snap-$(DATE)/) + (cd .. ; tar --verbose --exclude ".svn" -exclude "*.key" --exclude "*.private" --create --file ldns-snap-$(DATE).tar.gz --gzip ldns-snap-$(DATE)/) (rm -rf ../ldns-snap-$(DATE)/) release: realclean (rm -rf ../ldns-$(VERSION)/) (cd .. ; cp -r $(basesrcdir)/ ldns-$(VERSION)/) - (cd .. ; tar --verbose --exclude ".svn" --exclude ".key" --exclude ".private" --create --file ldns-$(VERSION).tar.gz --gzip ldns-$(VERSION)/) + (cd .. ; tar --verbose --exclude ".svn" --exclude "*.key" --exclude "*.private" --create --file ldns-$(VERSION).tar.gz --gzip ldns-$(VERSION)/) (rm -rf ../ldns-$(VERSION)/) mx: mx.o $(LIBDNS_OBJECTS) $(LIBOBJS)