]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
exclude the lua bindins for now when doing a release. Also
authorMiek Gieben <miekg@NLnetLabs.nl>
Mon, 5 Sep 2005 14:20:41 +0000 (14:20 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Mon, 5 Sep 2005 14:20:41 +0000 (14:20 +0000)
make 'make release' more robust

Changelog
Makefile.in

index cbaebc2c3929dd4b5cfd609816d52d0578e78d24..c46e388f0f8bf063b78e39684abd1391254beb7e 100644 (file)
--- 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
index 5dd965779df8c145f4bb86c2f3c6f0e8a49673d1..f127352eeb195d58753d695d94e6aa60e1b4880d 100644 (file)
@@ -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)