From 063cd226b900cfcfcc98fd1d12ad1c0ad535f0c5 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 8 Feb 2006 17:32:09 +0000 Subject: [PATCH] (compile): Append "|| true" to the end of the `find' command, like compile-always does. --- lisp/ChangeLog | 5 +++++ lisp/Makefile.in | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) 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|'`; \ -- 2.39.2