aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-02-08 17:32:09 +0000
committerEli Zaretskii2006-02-08 17:32:09 +0000
commit063cd226b900cfcfcc98fd1d12ad1c0ad535f0c5 (patch)
tree4acf4014e5d8890ccfede09c535af419247f03a7
parent8392fe4a44e69f137eebfd2187b403cce6101e11 (diff)
downloademacs-063cd226b900cfcfcc98fd1d12ad1c0ad535f0c5.tar.gz
emacs-063cd226b900cfcfcc98fd1d12ad1c0ad535f0c5.zip
(compile): Append "|| true" to the end of the `find' command, like
compile-always does.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/Makefile.in4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c607ca350b2..2dabb698218 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
2
3 * Makefile.in (compile): Append "|| true" to the end of the `find'
4 command, like compile-always does.
5
12006-02-08 Sam Steingold <sds@gnu.org> 62006-02-08 Sam Steingold <sds@gnu.org>
2 7
3 * net/tramp.el (tramp-maybe-open-connection): Do not wait for 8 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 8c60b711f90..e90c6161f75 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -153,8 +153,10 @@ TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
153# subdirectories, to make sure require's and load's in the files being 153# subdirectories, to make sure require's and load's in the files being
154# compiled find the right files. 154# compiled find the right files.
155 155
156# `|| true' below prevents old Bash versions from getting confused
157# by an error.
156compile: $(lisp)/subdirs.el mh-autoloads doit 158compile: $(lisp)/subdirs.el mh-autoloads doit
157 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \ 159 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
158 wd=$(lisp); $(setwins); \ 160 wd=$(lisp); $(setwins); \
159 els=`echo $$wins | tr ' \011' '\012\012' | \ 161 els=`echo $$wins | tr ' \011' '\012\012' | \
160 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ 162 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \