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
commitf434e847e1ea88de1970937d252783601021f208 (patch)
tree04e8255dc8d284bacb417d5cf9ffcc3df07700d1 /Makefile.in
parent3041ee4114f13a5a885746d55dd929d3a4dbcb5d (diff)
downloademacs-f434e847e1ea88de1970937d252783601021f208.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; \