From e85a77bd7128fb2581c84e7a364a20037a7f79a2 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 26 Oct 2002 22:32:08 +0000 Subject: [PATCH] (compile-always): Avoid error in old Bash versions. --- lisp/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/Makefile.in b/lisp/Makefile.in index aa68e43c1da..5e02fe691ea 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -232,7 +232,7 @@ compile: subdirs.el doit # 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|'`; \ -- 2.39.5