]> git.eshelyaron.com Git - emacs.git/commitdiff
($(DOC)): Use -o and -a options to make-docfile,
authorAndrew Innes <andrewi@gnu.org>
Wed, 18 Dec 2002 23:51:15 +0000 (23:51 +0000)
committerAndrew Innes <andrewi@gnu.org>
Wed, 18 Dec 2002 23:51:15 +0000 (23:51 +0000)
because GNU make doesn't append when using >> redirection.

lib-src/ChangeLog
lib-src/makefile.w32-in

index f1858418c27e4025c98936345fd3c3c25a254c22..afd8b33d366175c5c1c371d10db1d8032634ca6e 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-18  Andrew Innes  <andrewi@gnu.org>
+
+       * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
+       because GNU make doesn't append when using >> redirection.
+
 2002-12-02  Richard M. Stallman  <rms@gnu.org>
 
        * emacsclient.c (main): Test HAVE_GETCWD, not BSD_SYSTEM.
index 4662b61b6d636949574d95181d4f2f590c6db941..78d284694d9e3725ffc565a762e9550b1efb0e48 100644 (file)
@@ -215,8 +215,8 @@ lisp= \
 DOC          = DOC 
 $(DOC):                $(BLD)/make-docfile.exe
                - $(DEL) $(DOC)
-               "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(obj) > $(DOC)
-               "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(lisp) >> $(DOC)
+               "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
+               "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp)
                $(CP) $(DOC) ../etc/DOC-X
                - mkdir "../src/$(OBJDIR)"
                - mkdir "../src/$(OBJDIR)/etc"