From 72041d01b538e261097f33517e5bbb78643f13d4 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 23 Sep 2003 10:46:15 +0000 Subject: [PATCH] (bootstrap-clean): Fix misplaced `!'. --- lisp/ChangeLog | 4 ++++ lisp/Makefile.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 -- 2.39.2