diff options
author | Glenn Morris <rgm@gnu.org> | 2014-10-12 18:47:48 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-10-12 18:47:48 -0700 |
commit | 7410c4e8720ff62f69e5032f1c2fd0325fb8457a (patch) | |
tree | af9eb0fa29f02a69c168908a5f8a16d23a279960 /doc/emacs/Makefile.in | |
parent | b1d5ab0352b6132eee4feaf9091ce7dc7a3e6a84 (diff) | |
parent | be3e1b61b5e6ce5c49fd845e549639362333ab58 (diff) | |
download | emacs-7410c4e8720ff62f69e5032f1c2fd0325fb8457a.tar.gz |
Merge from emacs-24; up to 2014-07-26T12:14:42Z!schwab@linux-m68k.org
Diffstat (limited to 'doc/emacs/Makefile.in')
-rw-r--r-- | doc/emacs/Makefile.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index e9894ac2207..352768517fa 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in @@ -209,6 +209,7 @@ bootstrap-clean maintainer-clean: distclean infoclean ## Make a standalone tarfile of the Emacs manual sources. ## The [c] is a dumb way to prevent configure expanding it. +## TODO this is getting increasingly lengthy; not sure it is worth keeping. dist: rm -rf emacs-manual-${version} mkdir emacs-manual-${version} @@ -219,6 +220,21 @@ dist: -e 's/^\(clean:.*\)/\1 infoclean/' \ -e "s/@ver[s]ion@/${version}/" \ -e 's/@MAKE[I]NFO@/makeinfo/' -e 's/@MK[D]IR_P@/mkdir -p/' \ + -e 's/@IN[F]O_EXT@/.info/' -e 's/@IN[F]O_OPTS@//' \ + -e 's|@SH[E]LL@|/bin/bash|' \ + -e 's|@[p]refix@|/usr/local|' \ + -e 's|@[d]atarootdir@|$${prefix}/share|' \ + -e 's|@[d]atadir@|$${datarootdir}|' \ + -e 's|@[P]ACKAGE_TARNAME@|emacs|' \ + -e 's|@[d]ocdir@|$${datarootdir}/doc/$${PACKAGE_TARNAME}|' \ + -e 's|@[d]vidir@|$${docdir}|' \ + -e 's|@[h]tmldir@|$${docdir}|' \ + -e 's|@[p]dfdir@|$${docdir}|' \ + -e 's|@[p]sdir@|$${docdir}|' \ + -e 's|@[G]ZIP_PROG@|gzip|' \ + -e 's|@IN[S]TALL@|install -c|' \ + -e 's|@IN[S]TALL_DATA@|$${INSTALL} -m 644|' \ + -e '/@[c]onfigure_input@/d' \ ${srcdir}/Makefile.in > emacs-manual-${version}/Makefile @if grep '@[a-zA-Z_]*@' emacs-manual-${version}/Makefile; then \ echo "Unexpanded configure variables in Makefile?" 1>&2; exit 1; \ |