From: Miek Gieben Date: Mon, 5 Sep 2005 14:20:41 +0000 (+0000) Subject: exclude the lua bindins for now when doing a release. Also X-Git-Tag: release-1.0.0~201 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ccfa62ec83724072dd13c4cb4ca1460120d28a42;p=thirdparty%2Fldns.git exclude the lua bindins for now when doing a release. Also make 'make release' more robust --- diff --git a/Changelog b/Changelog index cbaebc2c..c46e388f 100644 --- a/Changelog +++ b/Changelog @@ -5,8 +5,6 @@ XX Sep 2005: 0.80: ldns-team * A zone type is introduced. Currently this is a list of RRs, so it will not scale. * [beta] Zonefile parsing was added - * [beta] Some Lua binding were created (not complete, nor does it - compile on all platforms) * [tools] Drill was added to ldns - see drill/ * [tools] signer was added * [building] better check for ssl diff --git a/Makefile.in b/Makefile.in index 5dd96577..f127352e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -118,14 +118,14 @@ uninstall-lib: snapshot: realclean (rm -rf ../ldns-snap-$(DATE)/) (cd .. ; cp -r $(basesrcdir)/ ldns-snap-$(DATE)/) - (cd .. ; tar --verbose --exclude ".svn" --exclude "*.key" --exclude "*.private" --create --file ldns-snap-$(DATE).tar.gz --gzip ldns-snap-$(DATE)/) + (cd .. ; tar --verbose --exclude ".svn" --exclude "*.key" --exclude "*.private" --create --exclude "lua" --file ldns-snap-$(DATE).tar.gz --gzip ldns-snap-$(DATE)/) (rm -rf ../ldns-snap-$(DATE)/) release: realclean - (cd drill ; make allclean) + (cd drill ; make allclean; exit 0) (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 --exclude "lua" --file ldns-$(VERSION).tar.gz --gzip ldns-$(VERSION)/) (rm -rf ../ldns-$(VERSION)/) mx: mx.o $(LIBDNS_OBJECTS) $(LIBOBJS)