aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2003-09-23 10:46:15 +0000
committerDave Love2003-09-23 10:46:15 +0000
commit72041d01b538e261097f33517e5bbb78643f13d4 (patch)
treef7f6626bb5f5c9bdac9af51bd4062619c54456c4
parentf8977ff323435709a9d3504742cfe0f1364492eb (diff)
downloademacs-72041d01b538e261097f33517e5bbb78643f13d4.tar.gz
emacs-72041d01b538e261097f33517e5bbb78643f13d4.zip
(bootstrap-clean): Fix misplaced `!'.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3d0a3b46f06..1a88219ab2d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-09-23 Dave Love <fx@gnu.org>
2
3 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
4
12003-09-22 Nick Roberts <nick@nick.uklinux.net> 52003-09-22 Nick Roberts <nick@nick.uklinux.net>
2 6
3 * progmodes/gud.el (perldb): Add gud-until to list of commands. 7 * progmodes/gud.el (perldb): Add gud-until to list of commands.
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 886d82c1eca..ecbc28c0979 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -292,7 +292,7 @@ bootstrap-clean:
292 if test -x $(EMACS); then \ 292 if test -x $(EMACS); then \
293 $(MAKE) $(MFLAGS) autoloads; \ 293 $(MAKE) $(MFLAGS) autoloads; \
294 else \ 294 else \
295 if ! test -r $(lisp)/loaddefs.el; then \ 295 if test ! -r $(lisp)/loaddefs.el; then \
296 cp $(lisp)/loaddefs-boot.el $(lisp)/loaddefs.el; \ 296 cp $(lisp)/loaddefs-boot.el $(lisp)/loaddefs.el; \
297 fi \ 297 fi \
298 fi 298 fi