diff options
| author | Glenn Morris | 2014-11-08 18:06:29 -0800 |
|---|---|---|
| committer | Glenn Morris | 2014-11-08 18:06:29 -0800 |
| commit | da95e2399e068eb87ea90a4617d80980d0601eb4 (patch) | |
| tree | 4c2b9ac861c7f37d14950c199dda17dd38226955 /doc/lispref | |
| parent | 90a1373b4c8e3f646b2b75cb4a12126cd361faa0 (diff) | |
| parent | e4ed201ff9e089d8a074523ca7de02c1b84bece2 (diff) | |
| download | emacs-da95e2399e068eb87ea90a4617d80980d0601eb4.tar.gz emacs-da95e2399e068eb87ea90a4617d80980d0601eb4.zip | |
Merge from emacs-24; up to 117691
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/lispref/Makefile.in | 40 |
2 files changed, 6 insertions, 40 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 9a7a6c8c8a6..83a842372a0 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2014-11-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (version): Remove variable. | ||
| 4 | (clean): No longer delete dist tarfile. | ||
| 5 | (dist): Remove rule; replace with code in admin.el. | ||
| 6 | |||
| 1 | 2014-11-07 Martin Rudalics <rudalics@gmx.at> | 7 | 2014-11-07 Martin Rudalics <rudalics@gmx.at> |
| 2 | 8 | ||
| 3 | * frames.texi (Size and Position): Rewrite description of | 9 | * frames.texi (Size and Position): Rewrite description of |
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index 22955fb9bae..11cc0ecc10e 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in | |||
| @@ -25,8 +25,6 @@ SHELL = @SHELL@ | |||
| 25 | # Standard configure variables. | 25 | # Standard configure variables. |
| 26 | srcdir = @srcdir@ | 26 | srcdir = @srcdir@ |
| 27 | 27 | ||
| 28 | version=@version@ | ||
| 29 | |||
| 30 | buildinfodir = $(srcdir)/../../info | 28 | buildinfodir = $(srcdir)/../../info |
| 31 | # Directory with the (customized) texinfo.tex file. | 29 | # Directory with the (customized) texinfo.tex file. |
| 32 | texinfodir = $(srcdir)/../misc | 30 | texinfodir = $(srcdir)/../misc |
| @@ -164,7 +162,6 @@ mostlyclean: | |||
| 164 | clean: mostlyclean | 162 | clean: mostlyclean |
| 165 | rm -f $(DVI_TARGETS) $(HTML_TARGETS) $(PDF_TARGETS) $(PS_TARGETS) | 163 | rm -f $(DVI_TARGETS) $(HTML_TARGETS) $(PDF_TARGETS) $(PS_TARGETS) |
| 166 | rm -f vol[12].dvi vol[12].pdf vol[12].ps | 164 | rm -f vol[12].dvi vol[12].pdf vol[12].ps |
| 167 | rm -f emacs-lispref-${version}.tar* | ||
| 168 | 165 | ||
| 169 | distclean: clean | 166 | distclean: clean |
| 170 | rm -f Makefile | 167 | rm -f Makefile |
| @@ -177,43 +174,6 @@ infoclean: | |||
| 177 | 174 | ||
| 178 | bootstrap-clean maintainer-clean: distclean infoclean | 175 | bootstrap-clean maintainer-clean: distclean infoclean |
| 179 | 176 | ||
| 180 | .PHONY: dist | ||
| 181 | |||
| 182 | ## Note this excludes the two-volume stuff. | ||
| 183 | dist: | ||
| 184 | rm -rf emacs-lispref-${version} | ||
| 185 | mkdir emacs-lispref-${version} | ||
| 186 | cp ${srcdir}/*.texi ${texinfodir}/texinfo.tex \ | ||
| 187 | $(emacsdir)/emacsver.texi ${srcdir}/ChangeLog* \ | ||
| 188 | ${srcdir}/README emacs-lispref-${version}/ | ||
| 189 | sed -e 's/@sr[c]dir@/./' -e 's/^\(texinfodir *=\).*/\1 ./' \ | ||
| 190 | -e 's/^\(emacsdir *=\).*/\1 ./' \ | ||
| 191 | -e 's/^\(buildinfodir *=\).*/\1 ./' \ | ||
| 192 | -e 's/^\(clean:.*\)/\1 infoclean/' \ | ||
| 193 | -e "s/@ver[s]ion@/${version}/" \ | ||
| 194 | -e 's/@MAKE[I]NFO@/makeinfo/' -e 's/@MK[D]IR_P@/mkdir -p/' \ | ||
| 195 | -e 's/@IN[F]O_EXT@/.info/' -e 's/@IN[F]O_OPTS@//' \ | ||
| 196 | -e 's|@SH[E]LL@|/bin/bash|' \ | ||
| 197 | -e 's|@[p]refix@|/usr/local|' \ | ||
| 198 | -e 's|@[d]atarootdir@|$${prefix}/share|' \ | ||
| 199 | -e 's|@[d]atadir@|$${datarootdir}|' \ | ||
| 200 | -e 's|@[P]ACKAGE_TARNAME@|emacs|' \ | ||
| 201 | -e 's|@[d]ocdir@|$${datarootdir}/doc/$${PACKAGE_TARNAME}|' \ | ||
| 202 | -e 's|@[d]vidir@|$${docdir}|' \ | ||
| 203 | -e 's|@[h]tmldir@|$${docdir}|' \ | ||
| 204 | -e 's|@[p]dfdir@|$${docdir}|' \ | ||
| 205 | -e 's|@[p]sdir@|$${docdir}|' \ | ||
| 206 | -e 's|@[G]ZIP_PROG@|gzip|' \ | ||
| 207 | -e 's|@IN[S]TALL@|install -c|' \ | ||
| 208 | -e 's|@IN[S]TALL_DATA@|$${INSTALL} -m 644|' \ | ||
| 209 | -e '/@[c]onfigure_input@/d' \ | ||
| 210 | ${srcdir}/Makefile.in > emacs-lispref-${version}/Makefile | ||
| 211 | @if grep '@[a-zA-Z_]*@' emacs-lispref-${version}/Makefile; then \ | ||
| 212 | echo "Unexpanded configure variables in Makefile?" 1>&2; exit 1; \ | ||
| 213 | fi | ||
| 214 | tar -cf emacs-lispref-${version}.tar emacs-lispref-${version} | ||
| 215 | rm -rf emacs-lispref-${version} | ||
| 216 | |||
| 217 | .PHONY: install-dvi install-html install-pdf install-ps install-doc | 177 | .PHONY: install-dvi install-html install-pdf install-ps install-doc |
| 218 | 178 | ||
| 219 | install-dvi: dvi | 179 | install-dvi: dvi |