diff options
author | Tom Tromey <tromey@redhat.com> | 1996-03-25 02:58:35 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1996-03-25 02:58:35 +0000 |
commit | 44f4427223131d64d832d3f042c234149262d869 (patch) | |
tree | 9fa4afc489870c0c663d21e6e3849ce8f464d0df /lib/am/data.am | |
parent | 74bcd72a14f0664ac3149a757d65ff2af634633a (diff) | |
download | automake-44f4427223131d64d832d3f042c234149262d869.tar.gz |
Bug fixes
Diffstat (limited to 'lib/am/data.am')
-rw-r--r-- | lib/am/data.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/am/data.am b/lib/am/data.am index 4c5be281c..ea021e4a6 100644 --- a/lib/am/data.am +++ b/lib/am/data.am @@ -20,7 +20,7 @@ install-@DIR@DATA: $(@DIR@_DATA) ## Funny invocation because Makefile variable can be empty, leading to ## a syntax error in sh. list="$(@DIR@_DATA)"; for p in $$list; do \ - if test -f $$p; then \ + if test -f $(srcdir)/$$p; then \ $(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \ fi; \ done |