]> git.eshelyaron.com Git - emacs.git/commitdiff
(bootstrap-clean): Fix misplaced `!'.
authorDave Love <fx@gnu.org>
Tue, 23 Sep 2003 10:46:15 +0000 (10:46 +0000)
committerDave Love <fx@gnu.org>
Tue, 23 Sep 2003 10:46:15 +0000 (10:46 +0000)
lisp/ChangeLog
lisp/Makefile.in

index 3d0a3b46f06574302f609c8ce2b0bf4805b06134..1a88219ab2d7aa5cccfabf7b3625bb5d5f50823d 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-23  Dave Love  <fx@gnu.org>
+
+       * Makefile.in (bootstrap-clean): Fix misplaced `!'.
+
 2003-09-22  Nick Roberts  <nick@nick.uklinux.net>
 
        * progmodes/gud.el (perldb): Add gud-until to list of commands.
index 886d82c1ecabca604b7954c7c2d49dd1454581c2..ecbc28c09794428ebc5de06817fed3712c421d82 100644 (file)
@@ -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