]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[v9_9] [rt36993] work around a bmake bug in BSD
authorEvan Hunt <each@isc.org>
Fri, 12 Sep 2014 22:22:42 +0000 (15:22 -0700)
committerEvan Hunt <each@isc.org>
Fri, 12 Sep 2014 22:22:42 +0000 (15:22 -0700)
3950. [port] Changed the bin/python Makefile to work around a
bmake bug in FreeBSD 10 and NetBSD 6. [RT #36993]

(cherry picked from commit 8dba0e7d87d192deef8b2aac197e4f508043a30c)
(cherry picked from commit 357cce8964e54e22e18301846500592ba9e776f9)

CHANGES
bin/python/Makefile.in
make/rules.in

diff --git a/CHANGES b/CHANGES
index 204c8d2d0db3e7370cff30b77a82a59231a9cac9..4c2505700ddd2c5ca04a8c7cc638b64fc10f5921 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+3950.  [port]          Changed the bin/python Makefile to work around a
+                       bmake bug in FreeBSD 10 and NetBSD 6. [RT #36993]
+
        --- 9.9.6rc2 released ---
 
 3947.  [cleanup]       Set the executable bit on libraries when using
index 40a4de618e4f6aa1f4747a2b6211d819780f70fe..ee21d7743dc79764ff566357ca602265019b0618 100644 (file)
@@ -31,6 +31,14 @@ MANOBJS =    ${MANPAGES} ${HTMLPAGES}
 
 @BIND9_MAKE_RULES@
 
+dnssec-checkds: dnssec-checkds.py
+       cp -f dnssec-checkds.py dnssec-checkds
+       chmod +x dnssec-checkds
+
+dnssec-coverage: dnssec-coverage.py
+       cp -f dnssec-coverage.py dnssec-coverage
+       chmod +x dnssec-coverage
+
 doc man:: ${MANOBJS}
 
 docclean manclean maintainer-clean::
index e96507e8c4e90d6379ced344e30cc7373c935f1f..2a412f6c0313613e2b0f8329e35c7c7a97d75129 100644 (file)
@@ -360,11 +360,3 @@ ALWAYS_MAKE_SYMTABLE =     @ALWAYS_MAKE_SYMTABLE@
 .docbook.8:
        ${XSLTPROC} -o $@ ${top_srcdir}/doc/xsl/isc-manpage.xsl $<
 
-###
-### Python executable
-###
-.SUFFIXES: .py
-.py:
-       cp -f $< $@
-       chmod +x $@
-