aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2007-07-28 08:13:00 +0000
committerEli Zaretskii <[email protected]>2007-07-28 08:13:00 +0000
commit664a406f0202130158ff4540f453f5e5385fc41b (patch)
treea41c4f8c8cbe0879e84acfa77601f6e3b0ef60cc /Makefile.in
parent59b65f0076a44c6e899dd8c40e4a687ec91aa342 (diff)
(install-arch-indep): Use "rm -f" for removing DOC, to avoid an error message
if there is no DOC there.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 8f4ba68c17..ec93805a0e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -483,7 +483,7 @@ install-arch-indep: mkdir info
(cd ./etc; tar -chf - $${docfile}) \
|(cd $(DESTDIR)${docdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \
(cd $(DESTDIR)$(docdir); chown $${LOGNAME:-$$USERNAME} DOC*; chmod a+r DOC*; \
- if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \
+ if test "`echo DOC-*`" != "DOC-*"; then rm -f DOC; fi); \
else true; fi
-unset CDPATH; \
if [ -r ./lisp ] \