bug-gnulib
[Top][All Lists]
Advanced

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

[PATCH] gnulib-tool: fix typo that broke Emacs on powerpc-apple-darwin9.


From: Paul Eggert
Subject: [PATCH] gnulib-tool: fix typo that broke Emacs on powerpc-apple-darwin9.8.0.
Date: Fri, 07 Oct 2011 13:15:14 -0700
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.22) Gecko/20110906 Fedora/3.1.14-1.fc14 Thunderbird/3.1.14

 ChangeLog   |    8 ++++++++
 gnulib-tool |    2 +-
 2 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 96d9393..c57a4fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-10-07  Paul Eggert  <address@hidden>
+
+       gnulib-tool: fix typo that broke Emacs on powerpc-apple-darwin9.8.0.
+       Problem reported by Peter Dyballa in
+       <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9696>.
+       * gnulib-tool (func_emit_autoconf_snippets): Quote with "", not '',
+       when echoing "$condition".
+
 2011-10-07  Bruno Haible  <address@hidden>
 
        Fix documentation about math functions on MacOS X.
diff --git a/gnulib-tool b/gnulib-tool
index 60d99cd..628d9d6 100755
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -3962,7 +3962,7 @@ func_emit_autoconf_snippets ()
               func_module_shellfunc_name "$dep"
               func_cond_module_condition "$module" "$dep"
               if test "$condition" != true; then
-                echo '      if $condition; then'
+                echo "      if $condition; then"
                 echo "        $shellfunc"
                 echo '      fi'
               else
-- 
1.7.4.4




reply via email to

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