gnulib-tool: fix typo that broke Emacs on powerpc-apple-darwin9.8.0.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 7 Oct 2011 20:04:52 +0000 (13:04 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 7 Oct 2011 20:05:23 +0000 (13:05 -0700)
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".

ChangeLog
gnulib-tool

index 96d9393..c57a4fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-10-07  Paul Eggert  <eggert@cs.ucla.edu>
+
+       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  <bruno@clisp.org>
 
        Fix documentation about math functions on MacOS X.
index 60d99cd..628d9d6 100755 (executable)
@@ -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