From: Andrew Innes Date: Wed, 18 Dec 2002 23:51:15 +0000 (+0000) Subject: ($(DOC)): Use -o and -a options to make-docfile, X-Git-Tag: emacs-pretest-21.2.94~17 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=370bd8378b12d554aa651904bdd338d789a87bde;p=emacs.git ($(DOC)): Use -o and -a options to make-docfile, because GNU make doesn't append when using >> redirection. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index f1858418c27..afd8b33d366 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,8 @@ +2002-12-18 Andrew Innes + + * 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 * emacsclient.c (main): Test HAVE_GETCWD, not BSD_SYSTEM. diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index 4662b61b6d6..78d284694d9 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -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"