[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/Makefile.in
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/Makefile.in |
Date: |
Wed, 08 Feb 2006 17:31:23 +0000 |
Index: emacs/lisp/Makefile.in
diff -u emacs/lisp/Makefile.in:1.78 emacs/lisp/Makefile.in:1.79
--- emacs/lisp/Makefile.in:1.78 Mon Feb 6 14:33:31 2006
+++ emacs/lisp/Makefile.in Wed Feb 8 17:31:23 2006
@@ -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|'`; \