BIND 10 master, updated. a6646243196e059b1c137c939787117e78523b57 [master] don't use ?= for variable assignment
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Oct 13 15:07:13 UTC 2011
The branch, master has been updated
via a6646243196e059b1c137c939787117e78523b57 (commit)
from 9578ddf805881e30dc4ae2124bcae6b24b580f65 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a6646243196e059b1c137c939787117e78523b57
Author: Jeremy C. Reed <jreed at ISC.org>
Date: Thu Oct 13 10:05:56 2011 -0500
[master] don't use ?= for variable assignment
Solaris make says:
make: Fatal error in reader: Makefile, line 397: Badly formed macro assignment
It is fine with NetBSD's bmake and GNU gmake.
Anyways, it is not used by any target.
This was to choose the HTML-renderer.
-----------------------------------------------------------------------
Summary of changes:
doc/guide/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/doc/guide/Makefile.am b/doc/guide/Makefile.am
index aaf8960..f7fcddb 100644
--- a/doc/guide/Makefile.am
+++ b/doc/guide/Makefile.am
@@ -2,7 +2,7 @@ EXTRA_DIST = bind10-guide.css
EXTRA_DIST += bind10-guide.xml bind10-guide.html bind10-guide.txt
EXTRA_DIST += bind10-messages.xml bind10-messages.html
-HTML2TXT ?= elinks -dump -no-numbering -no-references
+HTML2TXT = elinks -dump -no-numbering -no-references
bind10-guide.txt: bind10-guide.html
$(HTML2TXT) $(srcdir)/bind10-guide.html > $@
More information about the bind10-changes
mailing list