]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
($autoconf): Allow spaces in file names.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 20 Aug 2004 06:17:21 +0000 (06:17 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 20 Aug 2004 06:17:21 +0000 (06:17 +0000)
bin/autoheader.in

index 19973567e8b054ebb9bcf6df0d0aa19b4ee318ca..fb0c16be966b4e5de78b59c7366f6417535b3c60 100644 (file)
@@ -157,9 +157,9 @@ END
   }
 
 # Set up autoconf.
-my $autoconf = "$autom4te --language=autoconf ";
-$autoconf .= join (' ', map { "--include=$_" } @include);
-$autoconf .= join (' ', map { "--prepend-include=$_" } @prepend_include);
+my $autoconf = "'$autom4te' --language=autoconf ";
+$autoconf .= join (' ', map { "--include='$_'" } @include);
+$autoconf .= join (' ', map { "--prepend-include='$_'" } @prepend_include);
 $autoconf .= ' --debug' if $debug;
 $autoconf .= ' --force' if $force;
 $autoconf .= ' --verbose' if $verbose;