]> git.eshelyaron.com Git - emacs.git/commitdiff
(compile-always): Avoid error in old Bash versions.
authorRichard M. Stallman <rms@gnu.org>
Sat, 26 Oct 2002 22:32:08 +0000 (22:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 26 Oct 2002 22:32:08 +0000 (22:32 +0000)
lisp/Makefile.in

index aa68e43c1da21e49712c5cad6d18ba56fe9ada78..5e02fe691ea685e49e8d92137c5b6824b79675b5 100644 (file)
@@ -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|'`; \