configure.ac: move warning to end of output for the end user
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 28 Oct 2016 23:01:19 +0000 (19:01 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 16 Nov 2016 19:11:43 +0000 (14:11 -0500)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
configure.ac
m4/pprint.m4

index 4f4944deebd57eb284cbc675d4d97bd401f1eb15..981ab5768d6b3b732da0e84d59b00504bc500ee8 100644 (file)
@@ -604,6 +604,7 @@ AC_ARG_ENABLE(
 
 # check for asciidoc and xmlto if we enabled building the man pages
 have_asciidoc_xmlto=no
+warn_prebuilt_man_pages=no
 
 AS_IF([test "x$man_pages_opt" = "xyes"], [
        AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
@@ -624,19 +625,7 @@ they will not be installed.
                        # only warn here: since we're in the tarball, the man
                        # pages should already be generated at this point, thus
                        # asciidoc/xmlto are not strictly required
-                       AC_MSG_WARN([
-You need asciidoc and xmlto to build the LTTng-tools man pages.
-
-Note that the man pages are already built in this distribution tarball,
-so asciidoc and xmlto are only needed if you intend to modify their
-sources.
-
-Also note that the installed man pages will contain the project's
-default command-line option and environment variable values.
-
-Use --disable-man-pages to completely disable building and installing
-the man pages.
-                       ])
+                       warn_prebuilt_man_pages=yes
                ])
        ], [
                have_asciidoc_xmlto=yes
@@ -1219,3 +1208,19 @@ AS_IF([test "$CONSUMERD64_LIBDIR" = ""],[
        path="$CONSUMERD64_LIBDIR"
 ])
 PPRINT_PROP_STRING([64-bit consumer libraries], [$path])
+PPRINT_SET_INDENT(0)
+
+AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
+       AS_ECHO
+       PPRINT_WARN([You need asciidoc and xmlto to build the LTTng-tools man pages.
+
+Note that the man pages are already built in this distribution tarball,
+therefore asciidoc and xmlto are only needed if you intend to modify
+their sources.
+
+Also note that the installed man pages will contain the project's
+default command-line option and environment variable values.
+
+Use --disable-man-pages to completely disable building and installing
+the man pages.])
+])
index 182810c3c3aa8084f699e77b545270227580557e..811e7a8d7bc1557e040dc860eec00bfc920b1db3 100644 (file)
@@ -164,7 +164,7 @@ AC_DEFUN([PPRINT_WARN], [
   m4_pushdef([pprint_msg], [$1])
 
   _PPRINT_INDENT
-  AS_ECHO("${PPRINT_COLOR_TXTYLW}WARNING:$PPRINT_COLOR_RST ${PPRINT_COLOR_BLDYLW}pprint_msg$PPRINT_COLOR_RST")
+  AS_ECHO(["${PPRINT_COLOR_TXTYLW}WARNING:$PPRINT_COLOR_RST ${PPRINT_COLOR_BLDYLW}pprint_msg$PPRINT_COLOR_RST"])
 
   m4_popdef([pprint_msg])
 ])
This page took 0.02684 seconds and 4 git commands to generate.