diff gnulib-tool @ 15852:44740f4ef8e2

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".
author Paul Eggert <eggert@cs.ucla.edu>
date Fri, 07 Oct 2011 13:04:52 -0700
parents 3002f394d1fe
children 3034b1243e09
line wrap: on
line diff
--- a/gnulib-tool	Fri Oct 07 12:55:09 2011 +0200
+++ b/gnulib-tool	Fri Oct 07 13:04:52 2011 -0700
@@ -3962,7 +3962,7 @@
               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