coreutils
[Top][All Lists]
Advanced

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

[PATCH 19/22] maint: fix quoting problem in configure.ac


From: Stefano Lattarini
Subject: [PATCH 19/22] maint: fix quoting problem in configure.ac
Date: Sat, 1 Sep 2012 01:46:56 +0200

* configure.ac ($bin_PROGRAMS): In the definition of this variable (due
to the never-enough-reviled  `...` non-POSIX command substitution).

Reported-by: Jim Meyering <address@hidden>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 53dc706..28c81cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -443,7 +443,7 @@ EXTRA_MANS=`for p in $no_install_progs_default; do echo 
man/$p.1; done`
 # with $(EXEEXT) appending on it, so we have to do it ourselves -- in
 # this case, only for $(bin_PROGRAMS).
 bin_PROGRAMS=`
-  for p in $optional_bin_progs; do echo "src/$p\$(EXEEXT)"; done`
+  for p in $optional_bin_progs; do echo src/"$p"'$(EXEEXT)'; done`
 
 # Normalize whitespace.
 man1_MANS=`echo $man1_MANS`
-- 
1.7.12




reply via email to

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