BIND 10 trac3006, updated. f1c399008dea27eed1200e392afd08929c5f9f96 [3006] Fail make if tools are not found during "make devel"

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Jun 27 01:21:46 UTC 2013


The branch, trac3006 has been updated
       via  f1c399008dea27eed1200e392afd08929c5f9f96 (commit)
      from  b99e16aa62aae9000905822f4a76bec8fff3591a (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 f1c399008dea27eed1200e392afd08929c5f9f96
Author: Mukund Sivaraman <muks at isc.org>
Date:   Thu Jun 27 06:51:14 2013 +0530

    [3006] Fail make if tools are not found during "make devel"

-----------------------------------------------------------------------

Summary of changes:
 doc/design/datasrc/Makefile.am |    8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

-----------------------------------------------------------------------
diff --git a/doc/design/datasrc/Makefile.am b/doc/design/datasrc/Makefile.am
index 397bcc0..f5e4a70 100644
--- a/doc/design/datasrc/Makefile.am
+++ b/doc/design/datasrc/Makefile.am
@@ -14,18 +14,14 @@ devel:	$(UML_FILES:.txt=.png) $(TEXT_FILES:.txt=.html)
 if HAVE_ASCIIDOC
 	$(AM_V_GEN) $(ASCIIDOC) -n $<
 else
-	@echo "*** asciidoc is required to regenerate $(@); creating dummy ***";
-	@echo "<html><body><p>" > $@
-	@echo "Dummy document. Install asciidoc to correctly generate this file." >> $@
-	@echo "</p></body></html>" >> $@
+	@echo "*** asciidoc is required to regenerate $(@) ***"; exit 1;
 endif
 
 .txt.png:
 if HAVE_PLANTUML
 	$(AM_V_GEN) $(PLANTUML) $<
 else
-	@echo "*** plantuml is required to regenerate $(@); creating dummy ***";
-	@echo "Dummy image. Install plantuml to correctly generate this file." > $@
+	@echo "*** plantuml is required to regenerate $(@) ***"; exit 1;
 endif
 
 CLEANFILES = \



More information about the bind10-changes mailing list