summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2004-05-28 09:48:58 +0000
committerAndreas Schwab <schwab@suse.de>2004-05-28 09:48:58 +0000
commit57c878bbd62f382af7d2f1d1544cdd027ad66b8b (patch)
treef15307c15538897dfbe66416c74a457270e5e6f4 /Makefile.in
parent4aa609dc300e11fbb28cb4fba2e4330fb6bab82f (diff)
downloademacs-57c878bbd62f382af7d2f1d1544cdd027ad66b8b.tar.gz
Revert last two changes.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 97d9a2a1079..7bfed3fd5ea 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -445,11 +445,9 @@ install-arch-indep: mkdir info
if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \
then \
echo "Copying etc/DOC-* to ${docdir} ..." ; \
- (cd ./etc; tar -chf - DOC* compilation.txt) \
+ (cd ./etc; tar -chf - DOC*) \
|(cd ${docdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \
- (cd $(docdir); \
- chown $${LOGNAME:-$$USERNAME} DOC* compilation.txt; \
- chmod a+r DOC* compilation.txt; \
+ (cd $(docdir); chown $${LOGNAME:-$$USERNAME} DOC*; chmod a+r DOC*; \
if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \
else true; fi
-unset CDPATH; \