diff options
Diffstat (limited to 'tests/mv')
-rw-r--r-- | tests/mv/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/mv/Makefile.in b/tests/mv/Makefile.in index 11674a1f0..21ed92da6 100644 --- a/tests/mv/Makefile.in +++ b/tests/mv/Makefile.in @@ -211,10 +211,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 \ |