]> sourceware.org Git - automake.git/commitdiff
quoting fix from Per
authorTom Tromey <tromey@redhat.com>
Wed, 2 Apr 1997 07:53:28 +0000 (07:53 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 2 Apr 1997 07:53:28 +0000 (07:53 +0000)
21 files changed:
ChangeLog
Makefile.in
automake.in
data.am
header.am
lib/am/data.am
lib/am/header.am
lib/am/libs.am
lib/am/lisp.am
lib/am/ltlib.am
lib/am/progs.am
lib/am/scripts.am
lib/am/tags.am
libs.am
lisp.am
ltlib.am
m4/Makefile.in
progs-clean.am
progs.am
scripts.am
tags.am

index 53e705a04ecf3d69c356dae320f5f9e8afb8e1ea..ce22a9df7b25f9dc6f49fdae6fbbcda02fa300b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 Wed Apr  2 00:03:50 1997  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_tags): Use single, not double, quotes when
+       setting list variable.
+       * data.am, header.am, libs.am, lisp.am, ltlib.am, progs-clean.am,
+       progs.am, scripts.am, tags.am: Use single quotes to fill list
+       variable; otherwise `$' in filename will not work.  From Per
+       Bothner.
+
        * mdate-sh: Use "ls -d" so mdate-sh can be run on a directory.
        From Bruno Haible.
 
index 0a41ca6bbbe1538d2c374075b23fd9e3bbba6bba..4bb40ef150c2dc206d4be11477d1462cf997a53d 100644 (file)
@@ -129,7 +129,7 @@ aclocal: $(top_builddir)/config.status aclocal.in
 install-binSCRIPTS: $(bin_SCRIPTS)
        @$(NORMAL_INSTALL)
        $(mkinstalldirs) $(bindir)
-       @list="$(bin_SCRIPTS)"; for p in $$list; do \
+       @list='$(bin_SCRIPTS)'; for p in $$list; do \
          if test -f $$p; then \
            echo " $(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`"; \
            $(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
@@ -141,14 +141,14 @@ install-binSCRIPTS: $(bin_SCRIPTS)
 
 uninstall-binSCRIPTS:
        $(NORMAL_UNINSTALL)
-       list="$(bin_SCRIPTS)"; for p in $$list; do \
+       list='$(bin_SCRIPTS)'; for p in $$list; do \
          rm -f $(bindir)/`echo $$p|sed '$(transform)'`; \
        done
 
 install-pkgdataSCRIPTS: $(pkgdata_SCRIPTS)
        @$(NORMAL_INSTALL)
        $(mkinstalldirs) $(pkgdatadir)
-       @list="$(pkgdata_SCRIPTS)"; for p in $$list; do \
+       @list='$(pkgdata_SCRIPTS)'; for p in $$list; do \
          if test -f $$p; then \
            echo " $(INSTALL_SCRIPT) $$p $(pkgdatadir)/`echo $$p|sed '$(transform)'`"; \
            $(INSTALL_SCRIPT) $$p $(pkgdatadir)/`echo $$p|sed '$(transform)'`; \
@@ -160,7 +160,7 @@ install-pkgdataSCRIPTS: $(pkgdata_SCRIPTS)
 
 uninstall-pkgdataSCRIPTS:
        $(NORMAL_UNINSTALL)
-       list="$(pkgdata_SCRIPTS)"; for p in $$list; do \
+       list='$(pkgdata_SCRIPTS)'; for p in $$list; do \
          rm -f $(pkgdatadir)/`echo $$p|sed '$(transform)'`; \
        done
 
@@ -277,7 +277,7 @@ maintainer-clean-info:
 install-pkgdataDATA: $(pkgdata_DATA)
        @$(NORMAL_INSTALL)
        $(mkinstalldirs) $(pkgdatadir)
-       @list="$(pkgdata_DATA)"; for p in $$list; do \
+       @list='$(pkgdata_DATA)'; for p in $$list; do \
          if test -f $(srcdir)/$$p; then \
            echo " $(INSTALL_DATA) $(srcdir)/$$p $(pkgdatadir)/$$p"; \
            $(INSTALL_DATA) $(srcdir)/$$p $(pkgdatadir)/$$p; \
@@ -289,7 +289,7 @@ install-pkgdataDATA: $(pkgdata_DATA)
 
 uninstall-pkgdataDATA:
        $(NORMAL_UNINSTALL)
-       list="$(pkgdata_DATA)"; for p in $$list; do \
+       list='$(pkgdata_DATA)'; for p in $$list; do \
          rm -f $(pkgdatadir)/$$p; \
        done
 
@@ -314,7 +314,7 @@ maintainer-clean-recursive:
           || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
        done && test -z "$$fail"
 tags-recursive:
-       list="$(SUBDIRS)"; for subdir in $$list; do \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
          (cd $$subdir && $(MAKE) tags); \
        done
 
@@ -326,7 +326,7 @@ ID: $(HEADERS) $(SOURCES)
 TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES)
        tags=; \
        here=`pwd`; \
-       list="$(SUBDIRS)"; for subdir in $$list; do \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
          test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
        done; \
        test -z "$(ETAGS_ARGS)$(SOURCES)$(HEADERS)$$tags" \
index 859d50164a3460685d2ceb414e7b4d3de937971e..85768b2db019d7bd5793ddf56ff690ba8541443f 100755 (executable)
@@ -2071,7 +2071,7 @@ sub handle_tags
     if (&variable_defined ('SUBDIRS'))
     {
        $output_rules .= ("tags-recursive:\n"
-                         . "\tlist=\"\$(SUBDIRS)\"; for subdir in \$\$list; do \\\n"
+                         . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
                          # Never fail here if a subdir fails; it
                          # isn't important.
                          . "\t  (cd \$\$subdir && \$(MAKE) tags); \\\n"
diff --git a/data.am b/data.am
index 050937d299fd5d3e099e40b51d0bdbd0db96f3d0..942b15479e75e4b1c272c52461c3f61d736e52bd 100644 (file)
--- a/data.am
+++ b/data.am
@@ -20,7 +20,7 @@ install-@DIR@DATA: $(@DIR@_DATA)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_DATA)"; for p in $$list; do \
+       @list='$(@DIR@_DATA)'; for p in $$list; do \
          if test -f $(srcdir)/$$p; then \
            echo " $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p"; \
            $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
@@ -32,6 +32,6 @@ install-@DIR@DATA: $(@DIR@_DATA)
 
 uninstall-@DIR@DATA:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_DATA)"; for p in $$list; do \
+       list='$(@DIR@_DATA)'; for p in $$list; do \
          rm -f $(@DIR@dir)/$$p; \
        done
index ae54110757620c959fc477a5afaf9e6244e5a35b..f5e971c6bfcf88ecf6a6f72e0caaded935764b00 100644 (file)
--- a/header.am
+++ b/header.am
@@ -20,13 +20,13 @@ install-@DIR@HEADERS: $(@DIR@_HEADERS)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_HEADERS)"; for p in $$list; do \
+       @list='$(@DIR@_HEADERS)'; for p in $$list; do \
          echo " $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p"; \
          $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
        done
 
 uninstall-@DIR@HEADERS:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_HEADERS)"; for p in $$list; do \
+       list='$(@DIR@_HEADERS)'; for p in $$list; do \
          rm -f $(@DIR@dir)/$$p; \
        done
index 050937d299fd5d3e099e40b51d0bdbd0db96f3d0..942b15479e75e4b1c272c52461c3f61d736e52bd 100644 (file)
@@ -20,7 +20,7 @@ install-@DIR@DATA: $(@DIR@_DATA)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_DATA)"; for p in $$list; do \
+       @list='$(@DIR@_DATA)'; for p in $$list; do \
          if test -f $(srcdir)/$$p; then \
            echo " $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p"; \
            $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
@@ -32,6 +32,6 @@ install-@DIR@DATA: $(@DIR@_DATA)
 
 uninstall-@DIR@DATA:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_DATA)"; for p in $$list; do \
+       list='$(@DIR@_DATA)'; for p in $$list; do \
          rm -f $(@DIR@dir)/$$p; \
        done
index ae54110757620c959fc477a5afaf9e6244e5a35b..f5e971c6bfcf88ecf6a6f72e0caaded935764b00 100644 (file)
@@ -20,13 +20,13 @@ install-@DIR@HEADERS: $(@DIR@_HEADERS)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_HEADERS)"; for p in $$list; do \
+       @list='$(@DIR@_HEADERS)'; for p in $$list; do \
          echo " $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p"; \
          $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
        done
 
 uninstall-@DIR@HEADERS:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_HEADERS)"; for p in $$list; do \
+       list='$(@DIR@_HEADERS)'; for p in $$list; do \
          rm -f $(@DIR@dir)/$$p; \
        done
index a70fe427fd15c3e5665fe29a8963cadfbe567dde..4f1de6589d4840969a0115d452a80184f51d45f2 100644 (file)
@@ -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
index df28caab89e8dcec471a34981276833dd308e8cc..a431a0323ca3b8b3b05269edce2b3dafd27a8e3f 100644 (file)
@@ -20,7 +20,7 @@ install-@DIR@LISP: $(@DIR@_LISP) $(ELCFILES)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_LISP)"; for p in $$list; do \
+       @list='$(@DIR@_LISP)'; for p in $$list; do \
          echo " $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p"; \
          $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
 ## Only install .elc file if it exists.
@@ -32,6 +32,6 @@ install-@DIR@LISP: $(@DIR@_LISP) $(ELCFILES)
 
 uninstall-@DIR@LISP:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_LISP)"; for p in $$list; do \
+       list='$(@DIR@_LISP)'; for p in $$list; do \
          rm -f $(@DIR@dir)/$$p $(@DIR@dir)/$${p}c; \
        done
index 5ff5e7eeb6c71d84d4513421356a36a965f8721d..1fe054b45db2ddd66055b84fbf2f9288765e0af5 100644 (file)
@@ -20,7 +20,7 @@ install-@DIR@LTLIBRARIES: $(@DIR@_LTLIBRARIES)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_LTLIBRARIES)"; for p in $$list; do \
+       @list='$(@DIR@_LTLIBRARIES)'; for p in $$list; do \
          if test -f $$p; then \
 ## Note that we explicitly set the libtool mode.  This avoids any lossage
 ## if the program doesn't have a name that libtool expects.
@@ -31,6 +31,6 @@ install-@DIR@LTLIBRARIES: $(@DIR@_LTLIBRARIES)
 
 uninstall-@DIR@LTLIBRARIES:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_LTLIBRARIES)"; for p in $$list; do \
+       list='$(@DIR@_LTLIBRARIES)'; for p in $$list; do \
          @LIBTOOL --mode=uninstall@ rm -f $(@DIR@dir)/$$p; \
        done
index 604cfd7cfb535945ee9b9bc7b5445c89d313f28d..f3a5a7bff409ee9d09ed35ec086634ac55cf3a10 100644 (file)
@@ -20,7 +20,7 @@ install-@DIR@PROGRAMS: $(@DIR@_PROGRAMS)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_PROGRAMS)"; for p in $$list; do \
+       @list='$(@DIR@_PROGRAMS)'; for p in $$list; do \
 ## This works even in Cygwin32, because we've explicitly touched the
 ## "real" program name after building it.
          if test -f $$p; then \
@@ -34,6 +34,6 @@ install-@DIR@PROGRAMS: $(@DIR@_PROGRAMS)
 
 uninstall-@DIR@PROGRAMS:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_PROGRAMS)"; for p in $$list; do \
+       list='$(@DIR@_PROGRAMS)'; for p in $$list; do \
          rm -f $(@DIR@dir)/`echo $$p|sed '$(transform)'`@EXEEXT@; \
        done
index d16589763b23e00cabb3e0fa890adb2d8ac49e28..ff7c5e9e8c35935b36116bd86f19d702223a5ce3 100644 (file)
@@ -20,7 +20,7 @@ install-@DIR@SCRIPTS: $(@DIR@_SCRIPTS)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_SCRIPTS)"; for p in $$list; do \
+       @list='$(@DIR@_SCRIPTS)'; for p in $$list; do \
          if test -f $$p; then \
            echo " $(INSTALL_SCRIPT) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`@EXEEXT@"; \
            $(INSTALL_SCRIPT) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`@EXEEXT@; \
@@ -32,7 +32,7 @@ install-@DIR@SCRIPTS: $(@DIR@_SCRIPTS)
 
 uninstall-@DIR@SCRIPTS:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_SCRIPTS)"; for p in $$list; do \
+       list='$(@DIR@_SCRIPTS)'; for p in $$list; do \
          rm -f $(@DIR@dir)/`echo $$p|sed '$(transform)'`; \
        done
 
index fdf435aaf69e82319c53cf7058d4cdefce42ba89..4962e3af58526946981045a2719f0fcceb541691 100644 (file)
@@ -25,7 +25,7 @@ TAGS: @DIRS@ $(HEADERS) $(SOURCES) @CONFIG@ $(TAGS_DEPENDENCIES)
        here=`pwd`; \
 ## It is ok to examine SUBDIRS here in every case; if it is empty,
 ## there is a slight performance hit.  But we don't care.
-       list="$(SUBDIRS)"; for subdir in $$list; do \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
          test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
        done; \
 ## Make sure we have something to run etags on.
diff --git a/libs.am b/libs.am
index a70fe427fd15c3e5665fe29a8963cadfbe567dde..4f1de6589d4840969a0115d452a80184f51d45f2 100644 (file)
--- a/libs.am
+++ b/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
diff --git a/lisp.am b/lisp.am
index df28caab89e8dcec471a34981276833dd308e8cc..a431a0323ca3b8b3b05269edce2b3dafd27a8e3f 100644 (file)
--- a/lisp.am
+++ b/lisp.am
@@ -20,7 +20,7 @@ install-@DIR@LISP: $(@DIR@_LISP) $(ELCFILES)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_LISP)"; for p in $$list; do \
+       @list='$(@DIR@_LISP)'; for p in $$list; do \
          echo " $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p"; \
          $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
 ## Only install .elc file if it exists.
@@ -32,6 +32,6 @@ install-@DIR@LISP: $(@DIR@_LISP) $(ELCFILES)
 
 uninstall-@DIR@LISP:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_LISP)"; for p in $$list; do \
+       list='$(@DIR@_LISP)'; for p in $$list; do \
          rm -f $(@DIR@dir)/$$p $(@DIR@dir)/$${p}c; \
        done
index 5ff5e7eeb6c71d84d4513421356a36a965f8721d..1fe054b45db2ddd66055b84fbf2f9288765e0af5 100644 (file)
--- a/ltlib.am
+++ b/ltlib.am
@@ -20,7 +20,7 @@ install-@DIR@LTLIBRARIES: $(@DIR@_LTLIBRARIES)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_LTLIBRARIES)"; for p in $$list; do \
+       @list='$(@DIR@_LTLIBRARIES)'; for p in $$list; do \
          if test -f $$p; then \
 ## Note that we explicitly set the libtool mode.  This avoids any lossage
 ## if the program doesn't have a name that libtool expects.
@@ -31,6 +31,6 @@ install-@DIR@LTLIBRARIES: $(@DIR@_LTLIBRARIES)
 
 uninstall-@DIR@LTLIBRARIES:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_LTLIBRARIES)"; for p in $$list; do \
+       list='$(@DIR@_LTLIBRARIES)'; for p in $$list; do \
          @LIBTOOL --mode=uninstall@ rm -f $(@DIR@dir)/$$p; \
        done
index a44416623927e3d7f12295a91f77f1a716b0b0a6..0aacb899ac6af337b94db89603a6b4f3ba74c749 100644 (file)
@@ -88,7 +88,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
 install-m4dataDATA: $(m4data_DATA)
        @$(NORMAL_INSTALL)
        $(mkinstalldirs) $(m4datadir)
-       @list="$(m4data_DATA)"; for p in $$list; do \
+       @list='$(m4data_DATA)'; for p in $$list; do \
          if test -f $(srcdir)/$$p; then \
            echo " $(INSTALL_DATA) $(srcdir)/$$p $(m4datadir)/$$p"; \
            $(INSTALL_DATA) $(srcdir)/$$p $(m4datadir)/$$p; \
@@ -100,7 +100,7 @@ install-m4dataDATA: $(m4data_DATA)
 
 uninstall-m4dataDATA:
        $(NORMAL_UNINSTALL)
-       list="$(m4data_DATA)"; for p in $$list; do \
+       list='$(m4data_DATA)'; for p in $$list; do \
          rm -f $(m4datadir)/$$p; \
        done
 tags: TAGS
index a4f14b44946acc206f306b820b17fb1a917898c3..05ff53ad89907fc665a6606b75de1d1eaf9ca412 100644 (file)
@@ -19,7 +19,7 @@ mostlyclean-@DIR@PROGRAMS:
 
 clean-@DIR@PROGRAMS:
 NOTCYGWIN      test -z "$(@DIR@_PROGRAMS)" || rm -f $(@DIR@_PROGRAMS)
-CYGWIN @list="$(@DIR@_PROGRAMS)"; for p in $$list; do \
+CYGWIN @list='$(@DIR@_PROGRAMS)'; for p in $$list; do \
 CYGWIN   rm -f $$p $$p$(EXEEXT); \
 CYGWIN done
 
index 604cfd7cfb535945ee9b9bc7b5445c89d313f28d..f3a5a7bff409ee9d09ed35ec086634ac55cf3a10 100644 (file)
--- a/progs.am
+++ b/progs.am
@@ -20,7 +20,7 @@ install-@DIR@PROGRAMS: $(@DIR@_PROGRAMS)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_PROGRAMS)"; for p in $$list; do \
+       @list='$(@DIR@_PROGRAMS)'; for p in $$list; do \
 ## This works even in Cygwin32, because we've explicitly touched the
 ## "real" program name after building it.
          if test -f $$p; then \
@@ -34,6 +34,6 @@ install-@DIR@PROGRAMS: $(@DIR@_PROGRAMS)
 
 uninstall-@DIR@PROGRAMS:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_PROGRAMS)"; for p in $$list; do \
+       list='$(@DIR@_PROGRAMS)'; for p in $$list; do \
          rm -f $(@DIR@dir)/`echo $$p|sed '$(transform)'`@EXEEXT@; \
        done
index d16589763b23e00cabb3e0fa890adb2d8ac49e28..ff7c5e9e8c35935b36116bd86f19d702223a5ce3 100644 (file)
@@ -20,7 +20,7 @@ install-@DIR@SCRIPTS: $(@DIR@_SCRIPTS)
        $(mkinstalldirs) $(@DIR@dir)
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
-       @list="$(@DIR@_SCRIPTS)"; for p in $$list; do \
+       @list='$(@DIR@_SCRIPTS)'; for p in $$list; do \
          if test -f $$p; then \
            echo " $(INSTALL_SCRIPT) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`@EXEEXT@"; \
            $(INSTALL_SCRIPT) $$p $(@DIR@dir)/`echo $$p|sed '$(transform)'`@EXEEXT@; \
@@ -32,7 +32,7 @@ install-@DIR@SCRIPTS: $(@DIR@_SCRIPTS)
 
 uninstall-@DIR@SCRIPTS:
        $(NORMAL_UNINSTALL)
-       list="$(@DIR@_SCRIPTS)"; for p in $$list; do \
+       list='$(@DIR@_SCRIPTS)'; for p in $$list; do \
          rm -f $(@DIR@dir)/`echo $$p|sed '$(transform)'`; \
        done
 
diff --git a/tags.am b/tags.am
index fdf435aaf69e82319c53cf7058d4cdefce42ba89..4962e3af58526946981045a2719f0fcceb541691 100644 (file)
--- a/tags.am
+++ b/tags.am
@@ -25,7 +25,7 @@ TAGS: @DIRS@ $(HEADERS) $(SOURCES) @CONFIG@ $(TAGS_DEPENDENCIES)
        here=`pwd`; \
 ## It is ok to examine SUBDIRS here in every case; if it is empty,
 ## there is a slight performance hit.  But we don't care.
-       list="$(SUBDIRS)"; for subdir in $$list; do \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
          test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
        done; \
 ## Make sure we have something to run etags on.
This page took 0.062892 seconds and 5 git commands to generate.