Changeset 5022:51d13afbf24b
- Timestamp:
- 2007-03-29 15:47:51 (22 months ago)
- Author:
- Brendan Cully <brendan@…>
- Branch:
- default
- Message:
-
Make -j2 in doc work (closes: #2538)
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r5020
|
r5022
|
|
| | 1 | 2007-03-29 15:23 -0700 Christoph Berg <cb@df7cb.de> (0514e6b5a67a) |
| | 2 | |
| | 3 | * init.c, init.h: Use ~/.muttrc as the default alias_file if no user |
| | 4 | muttrc exists. Makes the code agree with the documentation. Document |
| | 5 | that default is actually the used muttrc. (Closes Debian #226500.) |
| | 6 | |
| | 7 | 2007-03-29 10:30 -0700 Brendan Cully <brendan@kublai.com> (034ad0e55397) |
| | 8 | |
| | 9 | * bcache.c, bcache.h, imap/message.c: Make message cache write to |
| | 10 | temporary location until file is complete. Previously mutt trusted |
| | 11 | the cache file even when it was incomplete, causing permanently |
| | 12 | incorrect message display if the fetch was interrupted for some |
| | 13 | reason. |
| | 14 | |
| 1 | 15 | 2007-03-28 09:43 +0200 Thomas Roessler <roessler@does-not-exist.org> (25cbd5588d35) |
| 2 | 16 | |
-
|
r5013
|
r5022
|
|
| 1 | | # $Id$ |
| 2 | | |
| 3 | 1 | subdir = doc |
| 4 | 2 | |
| … |
… |
|
| 93 | 91 | touch stamp-doc-chunked |
| 94 | 92 | |
| | 93 | $(HTML_DOCFILES): stamp-doc-chunked |
| | 94 | |
| 95 | 95 | manual.pdf: manual.tex |
| 96 | 96 | -if test -f manual.tex; then pdfjadetex manual.tex; fi |
| … |
… |
|
| 134 | 134 | manual.xml.head $(top_srcdir)/functions.h $(top_srcdir)/OPS* manual.xml.tail \ |
| 135 | 135 | $(srcdir)/gen-map-doc $(top_srcdir)/VERSION $(top_srcdir)/ChangeLog |
| 136 | | $(MAKE) ../makedoc$(EXEEXT) # we do not want to rebuild the documentation in tarball builds |
| | 136 | $(MAKE) -j1 ../makedoc$(EXEEXT) # we do not want to rebuild the documentation in tarball builds |
| 137 | 137 | ( date=`head -n 1 $(top_srcdir)/ChangeLog | LC_ALL=C cut -d ' ' -f 1` && \ |
| 138 | 138 | sed -e "s/@VERSION\@/`cat $(top_srcdir)/VERSION` ($$date)/" $(srcdir)/manual.xml.head && \ |