]> sourceware.org Git - automake.git/commitdiff
Use @LONG@, not $(@LONG@)
authorTom Tromey <tromey@redhat.com>
Wed, 22 Nov 1995 08:51:30 +0000 (08:51 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 22 Nov 1995 08:51:30 +0000 (08:51 +0000)
data.am
lib/am/data.am

diff --git a/data.am b/data.am
index 063b11904a6ecbf814f1bbd08f4786aaf35b2123..f58e568253558633ca5405ea630e6cf29d849846 100644 (file)
--- 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
index 063b11904a6ecbf814f1bbd08f4786aaf35b2123..f58e568253558633ca5405ea630e6cf29d849846 100644 (file)
@@ -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
This page took 0.027345 seconds and 5 git commands to generate.