From: Dave Love Date: Tue, 23 Sep 2003 10:46:15 +0000 (+0000) Subject: (bootstrap-clean): Fix misplaced `!'. X-Git-Tag: ttn-vms-21-2-B4~8764 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=72041d01b538e261097f33517e5bbb78643f13d4;p=emacs.git (bootstrap-clean): Fix misplaced `!'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3d0a3b46f06..1a88219ab2d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2003-09-23 Dave Love + + * Makefile.in (bootstrap-clean): Fix misplaced `!'. + 2003-09-22 Nick Roberts * 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: if test -x $(EMACS); then \ $(MAKE) $(MFLAGS) autoloads; \ else \ - if ! test -r $(lisp)/loaddefs.el; then \ + if test ! -r $(lisp)/loaddefs.el; then \ cp $(lisp)/loaddefs-boot.el $(lisp)/loaddefs.el; \ fi \ fi