BIND 10 trac3006, updated. b99e16aa62aae9000905822f4a76bec8fff3591a [3006] Use the devel target just like in upper level directories

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Jun 24 03:07:58 UTC 2013


The branch, trac3006 has been updated
       via  b99e16aa62aae9000905822f4a76bec8fff3591a (commit)
       via  7a55d6839c96bc41cb440e30822e219911ed2ea1 (commit)
       via  df2c166741be35284c9a7711b28513fa0f5a128c (commit)
      from  38ff6231fc72640e2d67de0583a6af1bb98a1e3d (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 b99e16aa62aae9000905822f4a76bec8fff3591a
Author: Mukund Sivaraman <muks at isc.org>
Date:   Mon Jun 24 08:37:37 2013 +0530

    [3006] Use the devel target just like in upper level directories

commit 7a55d6839c96bc41cb440e30822e219911ed2ea1
Author: Mukund Sivaraman <muks at isc.org>
Date:   Mon Jun 24 08:29:13 2013 +0530

    [3006] Generate dummy targets when tools are not available
    
    Don't fail the build.

commit df2c166741be35284c9a7711b28513fa0f5a128c
Author: Mukund Sivaraman <muks at isc.org>
Date:   Mon Jun 24 08:23:46 2013 +0530

    [3006] Fix error messages that are printed

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

Summary of changes:
 doc/design/datasrc/Makefile.am |   12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

-----------------------------------------------------------------------
diff --git a/doc/design/datasrc/Makefile.am b/doc/design/datasrc/Makefile.am
index c671a41..397bcc0 100644
--- a/doc/design/datasrc/Makefile.am
+++ b/doc/design/datasrc/Makefile.am
@@ -8,22 +8,24 @@ UML_FILES = \
 TEXT_FILES = \
 	data-source-classes.txt
 
-BUILT_SOURCES = \
-	$(UML_FILES:.txt=.png) \
-	$(TEXT_FILES:.txt=.html)
+devel:	$(UML_FILES:.txt=.png) $(TEXT_FILES:.txt=.html)
 
 .txt.html:
 if HAVE_ASCIIDOC
 	$(AM_V_GEN) $(ASCIIDOC) -n $<
 else
-	@echo "*** a2x (asciidoc) is required to regenerate $(@) ***"; exit 1;
+	@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>" >> $@
 endif
 
 .txt.png:
 if HAVE_PLANTUML
 	$(AM_V_GEN) $(PLANTUML) $<
 else
-	@echo "*** a2x (plantuml) is required to regenerate $(@) ***"; exit 1;
+	@echo "*** plantuml is required to regenerate $(@); creating dummy ***";
+	@echo "Dummy image. Install plantuml to correctly generate this file." > $@
 endif
 
 CLEANFILES = \



More information about the bind10-changes mailing list