1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(install-arch-indep): Use "rm -f" for removing DOC, to avoid an error message

if there is no DOC there.
This commit is contained in:
Eli Zaretskii 2007-07-28 08:11:17 +00:00
parent fabbdc2f84
commit 5311e2710b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-07-28 Eli Zaretskii <eliz@gnu.org>
* Makefile.in (install-arch-indep): Use "rm -f" for removing DOC,
to avoid an error message if there is no DOC there.
2007-07-25 Glenn Morris <rgm@gnu.org>
* Relicense all FSF files to GPLv3 or later.

View File

@ -478,7 +478,7 @@ install-arch-indep: mkdir info
(cd ./etc; tar -chf - DOC*) \
|(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 ] \