diff options
| author | Glenn Morris | 2014-06-09 22:11:38 -0400 |
|---|---|---|
| committer | Glenn Morris | 2014-06-09 22:11:38 -0400 |
| commit | 40abffe4c6c6b2d4247eeb1d0e9591e7d6f8e7d2 (patch) | |
| tree | b2347958765b9a7d9ae95ecb6bfccaf8595e0029 /doc/lispintro | |
| parent | bb175792b137dde8c4fd47a0e4660395e6e2f77f (diff) | |
| download | emacs-40abffe4c6c6b2d4247eeb1d0e9591e7d6f8e7d2.tar.gz emacs-40abffe4c6c6b2d4247eeb1d0e9591e7d6f8e7d2.zip | |
Get rid of the INFO_EXT variable
It's never been anything more than pointless complexity
* configure.ac (INFO_EXT, INFO_OPTS): Remove output variables.
* Makefile.in (INFO_EXT): Remove and replace by ".info" throughout.
* doc/emacs/Makefile.in (INFO_EXT): Remove and replace by ".info" throughout.
(INFO_OPTS): Set directly rather than with configure.
* doc/lispintro/Makefile.in (INFO_EXT): Remove and replace by ".info" throughout.
(INFO_OPTS): Set directly rather than with configure.
* doc/lispref/Makefile.in (INFO_EXT): Remove and replace by ".info" throughout.
(INFO_OPTS): Set directly rather than with configure.
* doc/misc/Makefile.in (INFO_EXT): Remove and replace by ".info" throughout.
(INFO_OPTS): Set directly rather than with configure.
Diffstat (limited to 'doc/lispintro')
| -rw-r--r-- | doc/lispintro/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispintro/Makefile.in | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 304e036e3b1..4c549f9c8b3 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-06-10 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (INFO_EXT): Remove and replace by ".info" throughout. | ||
| 4 | (INFO_OPTS): Set directly rather than with configure. | ||
| 5 | |||
| 1 | 2014-06-02 Glenn Morris <rgm@gnu.org> | 6 | 2014-06-02 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs-lisp-intro.texi (Autoload): Update loaddefs.el details. | 8 | * emacs-lisp-intro.texi (Autoload): Update loaddefs.el details. |
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index c1c6ef71fa2..0055408c4a5 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -46,9 +46,8 @@ GZIP_PROG = @GZIP_PROG@ | |||
| 46 | 46 | ||
| 47 | HTML_OPTS = --no-split --html | 47 | HTML_OPTS = --no-split --html |
| 48 | 48 | ||
| 49 | INFO_EXT=@INFO_EXT@ | ||
| 50 | # Options used only when making info output. | 49 | # Options used only when making info output. |
| 51 | INFO_OPTS=@INFO_OPTS@ | 50 | INFO_OPTS= --no-split |
| 52 | 51 | ||
| 53 | INSTALL = @INSTALL@ | 52 | INSTALL = @INSTALL@ |
| 54 | INSTALL_DATA = @INSTALL_DATA@ | 53 | INSTALL_DATA = @INSTALL_DATA@ |
| @@ -79,7 +78,7 @@ srcs = ${srcdir}/emacs-lisp-intro.texi ${srcdir}/doclicense.texi \ | |||
| 79 | .dvi.ps: | 78 | .dvi.ps: |
| 80 | $(DVIPS) -o $@ $< | 79 | $(DVIPS) -o $@ $< |
| 81 | 80 | ||
| 82 | info: ${buildinfodir}/eintr$(INFO_EXT) | 81 | info: ${buildinfodir}/eintr.info |
| 83 | 82 | ||
| 84 | dvi: $(DVI_TARGETS) | 83 | dvi: $(DVI_TARGETS) |
| 85 | html: $(HTML_TARGETS) | 84 | html: $(HTML_TARGETS) |
| @@ -89,7 +88,7 @@ ps: $(PS_TARGETS) | |||
| 89 | # The file name eintr must fit within 5 characters, to allow for | 88 | # The file name eintr must fit within 5 characters, to allow for |
| 90 | # -NN extensions to fit into DOS 8+3 limits without clashing. | 89 | # -NN extensions to fit into DOS 8+3 limits without clashing. |
| 91 | # Note: "<" is not portable in ordinary make rules. | 90 | # Note: "<" is not portable in ordinary make rules. |
| 92 | ${buildinfodir}/eintr$(INFO_EXT): ${srcs} | 91 | ${buildinfodir}/eintr.info: ${srcs} |
| 93 | $(mkinfodir) | 92 | $(mkinfodir) |
| 94 | $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ ${srcdir}/emacs-lisp-intro.texi | 93 | $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ ${srcdir}/emacs-lisp-intro.texi |
| 95 | 94 | ||
| @@ -117,8 +116,8 @@ distclean: clean | |||
| 117 | 116 | ||
| 118 | infoclean: | 117 | infoclean: |
| 119 | rm -f \ | 118 | rm -f \ |
| 120 | $(buildinfodir)/eintr$(INFO_EXT) \ | 119 | $(buildinfodir)/eintr.info \ |
| 121 | $(buildinfodir)/eintr$(INFO_EXT)-[1-9] | 120 | $(buildinfodir)/eintr.info-[1-9] |
| 122 | 121 | ||
| 123 | maintainer-clean: distclean infoclean | 122 | maintainer-clean: distclean infoclean |
| 124 | 123 | ||
| @@ -136,7 +135,6 @@ dist: | |||
| 136 | -e 's/^\(clean:.*\)/\1 infoclean/' \ | 135 | -e 's/^\(clean:.*\)/\1 infoclean/' \ |
| 137 | -e "s/@ver[s]ion@/${version}/" \ | 136 | -e "s/@ver[s]ion@/${version}/" \ |
| 138 | -e 's/@MAKE[I]NFO@/makeinfo/' -e 's/@MK[D]IR_P@/mkdir -p/' \ | 137 | -e 's/@MAKE[I]NFO@/makeinfo/' -e 's/@MK[D]IR_P@/mkdir -p/' \ |
| 139 | -e 's/@IN[F]O_EXT@/.info/' -e 's/@IN[F]O_OPTS@//' \ | ||
| 140 | ${srcdir}/Makefile.in > emacs-lispintro-${version}/Makefile | 138 | ${srcdir}/Makefile.in > emacs-lispintro-${version}/Makefile |
| 141 | @if grep '@[a-zA-Z_]*@' emacs-lispintro-${version}/Makefile; then \ | 139 | @if grep '@[a-zA-Z_]*@' emacs-lispintro-${version}/Makefile; then \ |
| 142 | echo "Unexpanded configure variables in Makefile?" 1>&2; exit 1; \ | 140 | echo "Unexpanded configure variables in Makefile?" 1>&2; exit 1; \ |