# HG changeset patch # User Eli Zaretskii # Date 1139419883 0 # Node ID fbaf1c0fb4da3d20b8bf87768c8ae730ac5b3b76 # Parent 8ade2193499c79961e69426afe58436c4ad35e95 (compile): Append "|| true" to the end of the `find' command, like compile-always does. diff -r 8ade2193499c -r fbaf1c0fb4da lisp/Makefile.in --- a/lisp/Makefile.in Wed Feb 08 17:10:39 2006 +0000 +++ b/lisp/Makefile.in Wed Feb 08 17:31:23 2006 +0000 @@ -153,8 +153,10 @@ # 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|'`; \