summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-01-16 23:33:48 +0000
committerJim Meyering <jim@meyering.net>2002-01-16 23:33:48 +0000
commit96400fcda4088971714b0f7407a0163bb81c9dfe (patch)
treefdaaf005a39d26eb0428951544c53ead3f985cdf /doc
parent4ff8979277f58bd3c72c848a03b9dbe44f3d5e12 (diff)
downloadcoreutils-96400fcda4088971714b0f7407a0163bb81c9dfe.tar.xz
.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 2c2d64670..fcce59f4f 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -247,10 +247,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 \