From: Eli Zaretskii Date: Wed, 8 Feb 2006 17:32:09 +0000 (+0000) Subject: (compile): Append "|| true" to the end of the `find' command, like X-Git-Tag: emacs-pretest-22.0.90~4274 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=063cd226b900cfcfcc98fd1d12ad1c0ad535f0c5;p=emacs.git (compile): Append "|| true" to the end of the `find' command, like compile-always does. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c607ca350b2..2dabb698218 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-02-08 Mathias Megyei (tiny change) + + * Makefile.in (compile): Append "|| true" to the end of the `find' + command, like compile-always does. + 2006-02-08 Sam Steingold * 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) # subdirectories, to make sure require's and load's in the files being # compiled find the right files. +# `|| true' below prevents old Bash versions from getting confused +# by an error. compile: $(lisp)/subdirs.el mh-autoloads doit - find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \ + find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \ wd=$(lisp); $(setwins); \ els=`echo $$wins | tr ' \011' '\012\012' | \ sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \