diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/emacs/Makefile.in | 8 | ||||
| -rw-r--r-- | doc/lispintro/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispintro/Makefile.in | 4 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/Makefile.in | 4 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 7 | ||||
| -rw-r--r-- | doc/misc/Makefile.in | 4 |
8 files changed, 34 insertions, 8 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index b166262a7ca..a9d45ef2a4c 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-05-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (MKDIR_P): New, set by configure. | ||
| 4 | (mkinfodir): Use $MKDIR_P. | ||
| 5 | |||
| 1 | 2012-05-10 Glenn Morris <rgm@gnu.org> | 6 | 2012-05-10 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * mule.texi (Disabling Multibyte): Replace the obsolete "unibyte: t" | 8 | * mule.texi (Disabling Multibyte): Replace the obsolete "unibyte: t" |
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index 0e03efd9877..7ffbf52e94f 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in | |||
| @@ -35,6 +35,8 @@ infodir = $(srcdir)/../../info | |||
| 35 | # Directory with the (customized) texinfo.tex file. | 35 | # Directory with the (customized) texinfo.tex file. |
| 36 | texinfodir = $(srcdir)/../misc | 36 | texinfodir = $(srcdir)/../misc |
| 37 | 37 | ||
| 38 | MKDIR_P = @MKDIR_P@ | ||
| 39 | |||
| 38 | INFO_EXT=@INFO_EXT@ | 40 | INFO_EXT=@INFO_EXT@ |
| 39 | # Options used only when making info output. | 41 | # Options used only when making info output. |
| 40 | # --no-split is only needed because of MS-DOS. | 42 | # --no-split is only needed because of MS-DOS. |
| @@ -118,10 +120,8 @@ EMACSSOURCES= \ | |||
| 118 | $(EMACS_XTRA) | 120 | $(EMACS_XTRA) |
| 119 | 121 | ||
| 120 | ## This seems pointless. The info/ directory exists in both the | 122 | ## This seems pointless. The info/ directory exists in both the |
| 121 | ## repository and the release tarfiles. We do not use any | 123 | ## repository and the release tarfiles. |
| 122 | ## equivalent of mkdir -p/install-sh -d, so this is not a general | 124 | mkinfodir = @${MKDIR_P} ${infodir} |
| 123 | ## solution anyway. The second test -d is for parallel builds. | ||
| 124 | mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} | ||
| 125 | 125 | ||
| 126 | .PHONY: info dvi html pdf ps | 126 | .PHONY: info dvi html pdf ps |
| 127 | 127 | ||
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 1191b0de919..126c10c4342 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-05-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (MKDIR_P): New, set by configure. | ||
| 4 | (mkinfodir): Use $MKDIR_P. | ||
| 5 | |||
| 1 | 2012-05-05 Glenn Morris <rgm@gnu.org> | 6 | 2012-05-05 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs-lisp-intro.texi (Making Errors): Don't mention Emacs 20. | 8 | * emacs-lisp-intro.texi (Making Errors): Don't mention Emacs 20. |
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index 29f5344b8c6..bf10e5c73b7 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -26,6 +26,8 @@ infodir = $(srcdir)/../../info | |||
| 26 | # Directory with the (customized) texinfo.tex file. | 26 | # Directory with the (customized) texinfo.tex file. |
| 27 | texinfodir = $(srcdir)/../misc | 27 | texinfodir = $(srcdir)/../misc |
| 28 | 28 | ||
| 29 | MKDIR_P = @MKDIR_P@ | ||
| 30 | |||
| 29 | INFO_EXT=@INFO_EXT@ | 31 | INFO_EXT=@INFO_EXT@ |
| 30 | # Options used only when making info output. | 32 | # Options used only when making info output. |
| 31 | INFO_OPTS=@INFO_OPTS@ | 33 | INFO_OPTS=@INFO_OPTS@ |
| @@ -39,7 +41,7 @@ DVIPS = dvips | |||
| 39 | ENVADD = TEXINPUTS="$(srcdir):$(texinfodir):$(TEXINPUTS)" \ | 41 | ENVADD = TEXINPUTS="$(srcdir):$(texinfodir):$(TEXINPUTS)" \ |
| 40 | MAKEINFO="$(MAKEINFO) $(MAKEINFO_OPTS)" | 42 | MAKEINFO="$(MAKEINFO) $(MAKEINFO_OPTS)" |
| 41 | 43 | ||
| 42 | mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} | 44 | mkinfodir = @${MKDIR_P} ${infodir} |
| 43 | 45 | ||
| 44 | .PHONY: info dvi html pdf ps | 46 | .PHONY: info dvi html pdf ps |
| 45 | 47 | ||
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index b56164669f8..c3b50dbdcd5 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-05-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (MKDIR_P): New, set by configure. | ||
| 4 | (mkinfodir): Use $MKDIR_P. | ||
| 5 | |||
| 1 | 2012-05-10 Glenn Morris <rgm@gnu.org> | 6 | 2012-05-10 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * loading.texi (Loading Non-ASCII): Replace the obsolete "unibyte: t" | 8 | * loading.texi (Loading Non-ASCII): Replace the obsolete "unibyte: t" |
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index f1e3fba3691..dd820d85133 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in | |||
| @@ -30,6 +30,8 @@ texinfodir = $(srcdir)/../misc | |||
| 30 | # Directory with emacsver.texi. | 30 | # Directory with emacsver.texi. |
| 31 | emacsdir = $(srcdir)/../emacs | 31 | emacsdir = $(srcdir)/../emacs |
| 32 | 32 | ||
| 33 | MKDIR_P = @MKDIR_P@ | ||
| 34 | |||
| 33 | INFO_EXT=@INFO_EXT@ | 35 | INFO_EXT=@INFO_EXT@ |
| 34 | # Options used only when making info output. | 36 | # Options used only when making info output. |
| 35 | INFO_OPTS=@INFO_OPTS@ | 37 | INFO_OPTS=@INFO_OPTS@ |
| @@ -99,7 +101,7 @@ srcs = \ | |||
| 99 | $(srcdir)/gpl.texi \ | 101 | $(srcdir)/gpl.texi \ |
| 100 | $(srcdir)/doclicense.texi | 102 | $(srcdir)/doclicense.texi |
| 101 | 103 | ||
| 102 | mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} | 104 | mkinfodir = @${MKDIR_P} ${infodir} |
| 103 | 105 | ||
| 104 | .PHONY: info dvi pdf ps | 106 | .PHONY: info dvi pdf ps |
| 105 | 107 | ||
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 72e784f1f8d..1765c22d790 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-05-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (MKDIR_P): New, set by configure. | ||
| 4 | (mkinfodir): Use $MKDIR_P. | ||
| 5 | |||
| 1 | 2012-05-07 Glenn Morris <rgm@gnu.org> | 6 | 2012-05-07 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * forms.texi (Long Example): Update for changed location of files. | 8 | * forms.texi (Long Example): Update for changed location of files. |
| @@ -8995,7 +9000,7 @@ | |||
| 8995 | ;; coding: utf-8 | 9000 | ;; coding: utf-8 |
| 8996 | ;; End: | 9001 | ;; End: |
| 8997 | 9002 | ||
| 8998 | Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc. | 9003 | Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc. |
| 8999 | 9004 | ||
| 9000 | This file is part of GNU Emacs. | 9005 | This file is part of GNU Emacs. |
| 9001 | 9006 | ||
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in index 83bc2d7bf33..30fdbccee75 100644 --- a/doc/misc/Makefile.in +++ b/doc/misc/Makefile.in | |||
| @@ -38,6 +38,8 @@ infodir=../../info | |||
| 38 | ## Currently only used by efaq and calc. | 38 | ## Currently only used by efaq and calc. |
| 39 | emacsdir = $(srcdir)/../emacs | 39 | emacsdir = $(srcdir)/../emacs |
| 40 | 40 | ||
| 41 | MKDIR_P = @MKDIR_P@ | ||
| 42 | |||
| 41 | INFO_EXT=@INFO_EXT@ | 43 | INFO_EXT=@INFO_EXT@ |
| 42 | # Options used only when making info output. | 44 | # Options used only when making info output. |
| 43 | INFO_OPTS=@INFO_OPTS@ | 45 | INFO_OPTS=@INFO_OPTS@ |
| @@ -211,7 +213,7 @@ TEXI2PDF = texi2pdf | |||
| 211 | ENVADD = TEXINPUTS="$(srcdir):$(emacsdir):$(TEXINPUTS)" \ | 213 | ENVADD = TEXINPUTS="$(srcdir):$(emacsdir):$(TEXINPUTS)" \ |
| 212 | MAKEINFO="$(MAKEINFO) $(MAKEINFO_OPTS)" | 214 | MAKEINFO="$(MAKEINFO) $(MAKEINFO_OPTS)" |
| 213 | 215 | ||
| 214 | mkinfodir = @cd ${srcdir}; test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} | 216 | mkinfodir = @${MKDIR_P} ${srcdir}/${infodir} |
| 215 | 217 | ||
| 216 | .PHONY: info dvi pdf echo-info | 218 | .PHONY: info dvi pdf echo-info |
| 217 | 219 | ||