Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
664a406f
Commit
664a406f
authored
Jul 28, 2007
by
Eli Zaretskii
Browse files
(install-arch-indep): Use "rm -f" for removing DOC, to avoid an error message
if there is no DOC there.
parent
59b65f00
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
ChangeLog
ChangeLog
+5
-0
Makefile.in
Makefile.in
+1
-1
No files found.
ChangeLog
View file @
664a406f
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.
...
...
Makefile.in
View file @
664a406f
...
...
@@ -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
]
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment