]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[v9_10] [rt36993] work around a bmake bug in BSD
authorEvan Hunt <each@isc.org>
Fri, 12 Sep 2014 22:22:11 +0000 (15:22 -0700)
committerEvan Hunt <each@isc.org>
Fri, 12 Sep 2014 22:22:11 +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)

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

diff --git a/CHANGES b/CHANGES
index 3e06736d2b4bf7b2f3fbe530506075f9d89e9def..b9b22d553a0f841ac92f249bbf9a87f7c67916b0 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]
+
 3948.  [port]          solaris: RCVBUFSIZE was too large on Solaris with
                        --with-tuning=large. [RT #37059]
 
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 1479fa714e4878c7c9610b266cb53eac21c9a9a3..1a8e9ac9174d23be899e83e342e89ffa1d86dfd9 100644 (file)
@@ -357,11 +357,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 $@
-