diff options
| author | Andrew Innes | 2002-12-18 23:53:01 +0000 |
|---|---|---|
| committer | Andrew Innes | 2002-12-18 23:53:01 +0000 |
| commit | cf6d30d70422b3d7826cbfb065173d8008462e09 (patch) | |
| tree | decc3775603b85c8a78dc1ff2178dbb92837a966 | |
| parent | dd4461ace4e7ffaa0bde318191ac079f28886fb8 (diff) | |
| download | emacs-cf6d30d70422b3d7826cbfb065173d8008462e09.tar.gz emacs-cf6d30d70422b3d7826cbfb065173d8008462e09.zip | |
($(DOC)): Use -o and -a options to make-docfile,
because GNU make doesn't append when using >> redirection.
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/makefile.w32-in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 4f0c6a07002..be772d81835 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-12-18 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile, | ||
| 4 | because GNU make doesn't append when using >> redirection. | ||
| 5 | |||
| 1 | 2002-12-12 Jonathan Kamens <jik@kamens.brookline.ma.us> | 6 | 2002-12-12 Jonathan Kamens <jik@kamens.brookline.ma.us> |
| 2 | 7 | ||
| 3 | * b2m.pl: Make sure every message ends with a blank line, because | 8 | * b2m.pl: Make sure every message ends with a blank line, because |
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index f6b79b5ddd2..e92a00866ad 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in | |||
| @@ -225,8 +225,8 @@ lisp= \ | |||
| 225 | DOC = DOC | 225 | DOC = DOC |
| 226 | $(DOC): make-docfile | 226 | $(DOC): make-docfile |
| 227 | - $(DEL) $(DOC) | 227 | - $(DEL) $(DOC) |
| 228 | "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(obj) > $(DOC) | 228 | "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj) |
| 229 | "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(lisp) >> $(DOC) | 229 | "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp) |
| 230 | $(CP) $(DOC) ../etc/DOC-X | 230 | $(CP) $(DOC) ../etc/DOC-X |
| 231 | - mkdir "../src/$(OBJDIR)" | 231 | - mkdir "../src/$(OBJDIR)" |
| 232 | - mkdir "../src/$(OBJDIR)/etc" | 232 | - mkdir "../src/$(OBJDIR)/etc" |