summaryrefslogtreecommitdiff
path: root/lib/am/libs.am
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1997-04-02 07:53:36 +0000
committerTom Tromey <tromey@redhat.com>1997-04-02 07:53:36 +0000
commit4119bfe6a15a5629f88ce9dd486034154b2c28ed (patch)
treeceb4ff43db6beaea69ba44db4866fbff4ed52434 /lib/am/libs.am
parentb967da6e3946105b51e1d5140f8f764c122f1dfe (diff)
downloadautomake-4119bfe6a15a5629f88ce9dd486034154b2c28ed.tar.gz
quoting fix from Per
Diffstat (limited to 'lib/am/libs.am')
-rw-r--r--lib/am/libs.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/am/libs.am b/lib/am/libs.am
index a70fe427f..4f1de6589 100644
--- a/lib/am/libs.am
+++ b/lib/am/libs.am
@@ -20,7 +20,7 @@ install-@DIR@LIBRARIES: $(@DIR@_LIBRARIES)
$(mkinstalldirs) $(@DIR@dir)
## Funny invocation because Makefile variable can be empty, leading to
## a syntax error in sh.
- list="$(@DIR@_LIBRARIES)"; for p in $$list; do \
+ list='$(@DIR@_LIBRARIES)'; for p in $$list; do \
if test -f $$p; then \
echo " $(INSTALL_DATA) $$p $(@DIR@dir)/$$p"; \
$(INSTALL_DATA) $$p $(@DIR@dir)/$$p; \
@@ -32,7 +32,7 @@ install-@DIR@LIBRARIES: $(@DIR@_LIBRARIES)
## useless; sh never actually executes this command. Read the GNU
## Standards for a little enlightenment on this.
@$(POST_INSTALL)
- @list="$(@DIR@_LIBRARIES)"; for p in $$list; do \
+ @list='$(@DIR@_LIBRARIES)'; for p in $$list; do \
if test -f $$p; then \
## Must ranlib after installing because mod time changes.
echo " $(RANLIB) $(@DIR@dir)/$$p"; \
@@ -42,6 +42,6 @@ install-@DIR@LIBRARIES: $(@DIR@_LIBRARIES)
uninstall-@DIR@LIBRARIES:
$(NORMAL_UNINSTALL)
- list="$(@DIR@_LIBRARIES)"; for p in $$list; do \
+ list='$(@DIR@_LIBRARIES)'; for p in $$list; do \
rm -f $(@DIR@dir)/$$p; \
done