summaryrefslogtreecommitdiff
path: root/lisp/Makefile.in
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2007-07-05 20:37:35 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2007-07-05 20:37:35 +0000
commit4c5cd2d22b6980f158312ebbb4462aa7b89b0fcf (patch)
tree043e94a3c45f885b37090ae71581e9a8ff504820 /lisp/Makefile.in
parentc2ba4a6b0ad54fcf1ce20f7a84261d957558e359 (diff)
downloademacs-4c5cd2d22b6980f158312ebbb4462aa7b89b0fcf.tar.gz
(bootstrap-prepare): Make $(lisp)/ps-print.el
and $(lisp)/emacs-lisp/cl-loaddefs.el writable, as well.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r--lisp/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 3f56538e84e..8d407860a7c 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -275,14 +275,19 @@ $(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC)
# an up-to-date copy of loaddefs.el that is uncorrupted by
# local changes. (Because loaddefs.el is an automatically generated
# file, we don't want to store it in the source repository).
+#
+# The chmod +w is to handle env var CVSREAD=1. Files named
+# are identified by being the value of `generated-autoload-file'.
bootstrap-prepare:
if test -x $(EMACS); then \
$(MAKE) $(MFLAGS) autoloads; \
else \
cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el; \
- chmod +w $(lisp)/loaddefs.el; \
fi
+ chmod +w $(lisp)/loaddefs.el \
+ $(lisp)/ps-print.el \
+ $(lisp)/emacs-lisp/cl-loaddefs.el
maintainer-clean: distclean
cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL)