automake-patches
[Top][All Lists]
Advanced

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

FYI: * aclocal.in (trace_used_macros): Quote input files.


From: Ralf Wildenhues
Subject: FYI: * aclocal.in (trace_used_macros): Quote input files.
Date: Fri, 23 Nov 2007 00:18:18 +0100
User-agent: Mutt/1.5.13 (2006-08-11)

Applied to master.

Cheers,
Ralf

diff --git a/aclocal.in b/aclocal.in
index 195ef81..35d9459 100644
--- a/aclocal.in
+++ b/aclocal.in
@@ -664,7 +664,9 @@ sub trace_used_macros ()
   my $traces = ($ENV{AUTOM4TE} || 'autom4te');
   $traces .= " --language Autoconf-without-aclocal-m4 ";
   # All candidate files.
-  $traces .= join (' ', grep { exists $files{$_} } @file_order) . " ";
+  $traces .= join (' ',
+                  (map { "'$_'" }
+                   (grep { exists $files{$_} } @file_order))) . " ";
   # All candidate macros.
   $traces .= join (' ',
                   (map { "--trace='$_:\$f::\$n::\$1'" }




reply via email to

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