changeset 48005:93d886a02ac0

(compile-always): Avoid error in old Bash versions.
author Richard M. Stallman <rms@gnu.org>
date Sat, 26 Oct 2002 22:32:08 +0000
parents 3601833e37f9
children 9fb2295753ce
files lisp/Makefile.in
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/Makefile.in	Sat Oct 26 22:27:39 2002 +0000
+++ b/lisp/Makefile.in	Sat Oct 26 22:32:08 2002 +0000
@@ -232,7 +232,7 @@
 # Compile all Lisp files, except those from DONTCOMPILE.  This
 # is like `compile' but compiles files unconditionally.
 compile-always: subdirs.el 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);	\
 	elpat=`echo $$wins | tr ' 	' '\012\012' | \
 		sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`;	\