+2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
+
+ * Makefile.in (compile): Append "|| true" to the end of the `find'
+ command, like compile-always does.
+
2006-02-08 Sam Steingold <sds@gnu.org>
* net/tramp.el (tramp-maybe-open-connection): Do not wait for
# 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|'`; \