aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-11-08 11:12:38 -0800
committerGlenn Morris2014-11-08 11:12:38 -0800
commit929201eab134620e5ef79211897c93ba90518122 (patch)
tree0b67a43b19f5b75fbbb67f1249078b5a11983415
parent416148257afedb97bbe6d732eea3a0c72473dab0 (diff)
downloademacs-929201eab134620e5ef79211897c93ba90518122.tar.gz
emacs-929201eab134620e5ef79211897c93ba90518122.zip
doc/misc/Makefile.in: Parallel make fix
* doc/misc/Makefile.in (${buildinfodir}/ccmode.info) (${buildinfodir}/efaq%.info): Ensure output directory exists.
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 20b124f89cb..58d1a1080df 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12014-11-08 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (${buildinfodir}/ccmode.info)
4 (${buildinfodir}/efaq%.info): Ensure output directory exists.
5
12014-11-07 Tassilo Horn <tsdh@gnu.org> 62014-11-07 Tassilo Horn <tsdh@gnu.org>
2 7
3 * gnus.texi (HTML): Update section so that it mentions shr and w3m. 8 * gnus.texi (HTML): Update section so that it mentions shr and w3m.
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
index 250d3c39c45..7a2287af710 100644
--- a/doc/misc/Makefile.in
+++ b/doc/misc/Makefile.in
@@ -176,12 +176,12 @@ $(buildinfodir)/semantic.info semantic.dvi semantic.pdf semantic.html: ${srcdir}
176 176
177 177
178## Please can we just rename cc-mode.texi to ccmode.texi... 178## Please can we just rename cc-mode.texi to ccmode.texi...
179${buildinfodir}/ccmode.info: ${srcdir}/cc-mode.texi ${gfdl} 179${buildinfodir}/ccmode.info: ${srcdir}/cc-mode.texi ${gfdl} | ${buildinfodir}
180 $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ $< 180 $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ $<
181 181
182## efaq, efaq_w32 do not depend on gfdl. 182## efaq, efaq_w32 do not depend on gfdl.
183## Maybe we can use .SECONDEXPANSION for this. 183## Maybe we can use .SECONDEXPANSION for this.
184${buildinfodir}/efaq%.info: ${srcdir}/efaq%.texi 184${buildinfodir}/efaq%.info: ${srcdir}/efaq%.texi | ${buildinfodir}
185 $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ $< 185 $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ $<
186 186
187efaq%.dvi: ${srcdir}/efaq%.texi 187efaq%.dvi: ${srcdir}/efaq%.texi