SF.net SVN: geany-plugins:[1338] trunk/geanygendoc/configure.ac

colombanw at users.sourceforge.net colombanw at xxxxx
Sun May 9 18:35:20 UTC 2010


Revision: 1338
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1338&view=rev
Author:   colombanw
Date:     2010-05-09 18:35:20 +0000 (Sun, 09 May 2010)

Log Message:
-----------
GeanyGenDoc: Show whether to build documentation on configure summary

Modified Paths:
--------------
    trunk/geanygendoc/configure.ac

Modified: trunk/geanygendoc/configure.ac
===================================================================
--- trunk/geanygendoc/configure.ac	2010-05-09 18:34:51 UTC (rev 1337)
+++ trunk/geanygendoc/configure.ac	2010-05-09 18:35:20 UTC (rev 1338)
@@ -20,7 +20,8 @@
 
 AC_PATH_PROG([RST2HTML], [rst2html], [no])
 AC_SUBST([RST2HTML])
-AM_CONDITIONAL([BUILD_RST], [test "x$RST2HTML" != "xno"])
+BUILD_RST=`test "x$RST2HTML" != "xno" && echo Yes || echo No`
+AM_CONDITIONAL([BUILD_RST], [test "x$BUILD_RST" == "xYes"])
 
 # checking for Geany
 PKG_CHECK_MODULES(GEANY,  [geany      >= 0.18.1])
@@ -83,6 +84,7 @@
 echo "Using GIO version                    : ${GIO_VERSION}"
 echo "Using GTK version                    : ${GTK_VERSION}"
 echo "Using CTPL version                   : ${CTPL_VERSION}"
+echo "Build documentation                  : $BUILD_RST"
 echo ""
 echo "Configuration is done OK."
 echo ""


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list