From: Tom Tromey Date: Wed, 22 Nov 1995 08:51:30 +0000 (+0000) Subject: Use @LONG@, not $(@LONG@) X-Git-Tag: Release-0-25~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e196683f14bd565ee2ddced25d70a302e400f555;p=thirdparty%2Fautomake.git Use @LONG@, not $(@LONG@) --- diff --git a/data.am b/data.am index 063b11904..f58e56825 100644 --- a/data.am +++ b/data.am @@ -1,15 +1,15 @@ install:: install-@SHORT@data # We use a funny name because "install-data" has another meaning. -install-@SHORT@data: $(@LONG@) +install-@SHORT@data: @LONG@ $(top_srcdir)/mkinstalldirs @DIR@ - for p in $(@LONG@); do \ + for p in @LONG@; do \ $(INSTALL_DATA) $(srcdir)/$$p @DIR@/$$p; \ done uninstall:: install-@SHORT@data uninstall-@SHORT@data: - for p in $(@LONG@); do \ + for p in @LONG@; do \ rm -f @DIR@/$$p; \ done \ No newline at end of file diff --git a/lib/am/data.am b/lib/am/data.am index 063b11904..f58e56825 100644 --- a/lib/am/data.am +++ b/lib/am/data.am @@ -1,15 +1,15 @@ install:: install-@SHORT@data # We use a funny name because "install-data" has another meaning. -install-@SHORT@data: $(@LONG@) +install-@SHORT@data: @LONG@ $(top_srcdir)/mkinstalldirs @DIR@ - for p in $(@LONG@); do \ + for p in @LONG@; do \ $(INSTALL_DATA) $(srcdir)/$$p @DIR@/$$p; \ done uninstall:: install-@SHORT@data uninstall-@SHORT@data: - for p in $(@LONG@); do \ + for p in @LONG@; do \ rm -f @DIR@/$$p; \ done \ No newline at end of file