diff options
Diffstat (limited to 'tests/ln')
-rw-r--r-- | tests/ln/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/ln/Makefile.in b/tests/ln/Makefile.in index e36dea72b..823d6730b 100644 --- a/tests/ln/Makefile.in +++ b/tests/ln/Makefile.in @@ -203,10 +203,13 @@ distdir: $(DISTFILES) if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - $(mkinstalldirs) "$(distdir)/$$dir"; \ + dir="/$$dir"; \ + $(mkinstalldirs) "$(distdir)$$dir"; \ + else \ + dir=''; \ fi; \ if test -d $$d/$$file; then \ - cp -pR $$d/$$file $(distdir) \ + cp -pR $$d/$$file $(distdir)$$dir \ || exit 1; \ else \ test -f $(distdir)/$$file \ |