texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[6747] use AC_MSG_RESULT


From: Gavin D. Smith
Subject: [6747] use AC_MSG_RESULT
Date: Mon, 02 Nov 2015 16:20:30 +0000

Revision: 6747
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6747
Author:   gavin
Date:     2015-11-02 16:20:29 +0000 (Mon, 02 Nov 2015)
Log Message:
-----------
use AC_MSG_RESULT

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Makefile.am
    trunk/tp/Texinfo/Convert/XSParagraph/configure.ac

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2015-11-02 16:16:55 UTC (rev 6746)
+++ trunk/ChangeLog     2015-11-02 16:20:29 UTC (rev 6747)
@@ -1,3 +1,10 @@
+2015-11-02  Gavin Smith  <address@hidden>
+
+       * tp/Makefile.am: Remove a commented-out line.
+       * Texinfo/Convert/XSParagraph/configure.ac: Comment out or 
+       delete messages printing results and use AC_MSG_CHECKING and 
+       AS_MSG_RESULT.
+
 2015-11-01  Gavin Smith  <address@hidden>
 
        * tp/tests/Makefile.am: Remove commented-out lines and 

Modified: trunk/tp/Makefile.am
===================================================================
--- trunk/tp/Makefile.am        2015-11-02 16:16:55 UTC (rev 6746)
+++ trunk/tp/Makefile.am        2015-11-02 16:20:29 UTC (rev 6747)
@@ -184,7 +184,6 @@
 tp_tests = prove.sh
 
 if TP_TESTS
-#TESTS = $(tp_tests)
 TESTS = $(test_tap_files_generated_list)
 endif
 

Modified: trunk/tp/Texinfo/Convert/XSParagraph/configure.ac
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/configure.ac   2015-11-02 16:16:55 UTC 
(rev 6746)
+++ trunk/tp/Texinfo/Convert/XSParagraph/configure.ac   2015-11-02 16:20:29 UTC 
(rev 6747)
@@ -5,7 +5,6 @@
 fetch_conf ()
 {
           conf_value=`${PERL} -V:$1`
-          echo got "$conf_value"
           # This turns a string like "cc='cc';" into a string like "cc".
           # Afterwards, convert \ into / in case \ is a path separator,
           # so it is not interpreted as a special character by the shell.
@@ -15,23 +14,24 @@
                     -e 's/ *; *$//'            \
                     -e 's/'\\''$//'            \
                     -e 's/\\\\/\\//g'          `
-          echo got "$conf_value"
+          #echo got "$conf_value"
 } 
 
 AC_DEFUN([lookup_perl_conf],
-         [echo Getting Perl conf value $1
+         [AC_MSG_CHECKING([Perl configuration value $1])
           fetch_conf $1
+          AC_MSG_RESULT([$conf_value])
           AC_SUBST([PERL_CONF_$1], [$conf_value])
 ])
 
 AC_DEFUN([lookup_perl_flags],
-         [echo Getting Perl flags for $1
+         [AC_MSG_CHECKING([Perl flags for $1])
 
           fetch_conf $1
 
           # Remove any flags that aren't -I or -D
           conf_value=`echo $conf_value | sed -e 's/-@<:@^ID@:>@@<:@^ @:>@*//g'`
-          echo cleaned is $conf_value
+          AC_MSG_RESULT([$conf_value])
 
           AC_SUBST([PERL_CONF_$1], [$conf_value])
          ])




reply via email to

[Prev in Thread] Current Thread [Next in Thread]