aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-06-18 20:49:26 -0700
committerGlenn Morris2013-06-18 20:49:26 -0700
commit789cf83370bc2485ec5d40b076e75d0ba0a499fc (patch)
tree41032736edb398c49aa4d5c42f484f4c999ff532
parentad5281251b55cc7e872bb6b0a2ab7871f024a1b2 (diff)
downloademacs-789cf83370bc2485ec5d40b076e75d0ba0a499fc.tar.gz
emacs-789cf83370bc2485ec5d40b076e75d0ba0a499fc.zip
Edit more configure variables in doc make dist rules.
* doc/emacs/Makefile.in (dist): * doc/lispintro/Makefile.in (dist): * doc/lispref/Makefile.in (dist): Edit more configure variables. Try to check that we do not miss any in future. Fixes: debbugs:14660
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/Makefile.in7
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/Makefile.in6
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/Makefile.in7
6 files changed, 35 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index c3a7343aa8f..12269c7ce32 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,8 @@
12013-06-19 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (dist): Edit more configure variables.
4 Try to check that we do not miss any in future.
5
12013-06-12 Xue Fuqiao <xfq.free@gmail.com> 62013-06-12 Xue Fuqiao <xfq.free@gmail.com>
2 7
3 * vc1-xtra.texi (Revision Tags): Add a cross reference. 8 * vc1-xtra.texi (Revision Tags): Add a cross reference.
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in
index 43de825ea70..5652b8b804d 100644
--- a/doc/emacs/Makefile.in
+++ b/doc/emacs/Makefile.in
@@ -19,6 +19,9 @@
19 19
20SHELL = /bin/sh 20SHELL = /bin/sh
21 21
22# NB If you add any more configure variables,
23# update the sed rules in the dist target below.
24
22# Where to find the source code. $(srcdir) will be the doc/emacs subdirectory 25# Where to find the source code. $(srcdir) will be the doc/emacs subdirectory
23# of the source tree. This is set by configure's `--srcdir' option. 26# of the source tree. This is set by configure's `--srcdir' option.
24srcdir=@srcdir@ 27srcdir=@srcdir@
@@ -195,8 +198,12 @@ dist:
195 -e 's/^\(buildinfodir *=\).*/\1 ./' \ 198 -e 's/^\(buildinfodir *=\).*/\1 ./' \
196 -e 's/^\(clean:.*\)/\1 infoclean/' \ 199 -e 's/^\(clean:.*\)/\1 infoclean/' \
197 -e "s/@ver[s]ion@/${version}/" \ 200 -e "s/@ver[s]ion@/${version}/" \
201 -e 's/@MAKE[I]NFO@/makeinfo/' -e 's/@MK[D]IR_P@/mkdir -p/' \
202 -e 's/@IN[F]O_EXT@/.info/' -e 's/@IN[F]O_OPTS@//' \
198 ${srcdir}/Makefile.in > emacs-manual-${version}/Makefile 203 ${srcdir}/Makefile.in > emacs-manual-${version}/Makefile
199 tar -cf emacs-manual-${version}.tar emacs-manual-${version} 204 tar -cf emacs-manual-${version}.tar emacs-manual-${version}
205 @grep '@[A-Z]*@' emacs-manual-${version}/Makefile && \
206 echo "WARNING: Unexpanded configure variables in Makefile?" || true
200 rm -rf emacs-manual-${version} 207 rm -rf emacs-manual-${version}
201 208
202### Makefile ends here 209### Makefile ends here
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index 5e4655506f6..8905fb32f2c 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
12013-06-19 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (dist): Edit more configure variables. (Bug#14660)
4 Try to check that we do not miss any in future.
5
12013-04-24 Eli Zaretskii <eliz@gnu.org> 62013-04-24 Eli Zaretskii <eliz@gnu.org>
2 7
3 * makefile.w32-in (INFO_OPTS): Add "-I$(emacsdir)" to fix last 8 * makefile.w32-in (INFO_OPTS): Add "-I$(emacsdir)" to fix last
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in
index 338b4ad86c4..80987d359b7 100644
--- a/doc/lispintro/Makefile.in
+++ b/doc/lispintro/Makefile.in
@@ -19,6 +19,8 @@
19 19
20SHELL = /bin/sh 20SHELL = /bin/sh
21 21
22# NB If you add any more configure variables,
23# update the sed rules in the dist target below.
22srcdir = @srcdir@ 24srcdir = @srcdir@
23version=@version@ 25version=@version@
24 26
@@ -107,8 +109,12 @@ dist:
107 -e 's/^\(buildinfodir *=\).*/\1 ./' \ 109 -e 's/^\(buildinfodir *=\).*/\1 ./' \
108 -e 's/^\(clean:.*\)/\1 infoclean/' \ 110 -e 's/^\(clean:.*\)/\1 infoclean/' \
109 -e "s/@ver[s]ion@/${version}/" \ 111 -e "s/@ver[s]ion@/${version}/" \
112 -e 's/@MAKE[I]NFO@/makeinfo/' -e 's/@MK[D]IR_P@/mkdir -p/' \
113 -e 's/@IN[F]O_EXT@/.info/' -e 's/@IN[F]O_OPTS@//' \
110 ${srcdir}/Makefile.in > emacs-lispintro-${version}/Makefile 114 ${srcdir}/Makefile.in > emacs-lispintro-${version}/Makefile
111 tar -cf emacs-lispintro-${version}.tar emacs-lispintro-${version} 115 tar -cf emacs-lispintro-${version}.tar emacs-lispintro-${version}
116 @grep '@[A-Z]*@' emacs-lispintro-${version}/Makefile && \
117 echo "WARNING: Unexpanded configure variables in Makefile?" || true
112 rm -rf emacs-lispintro-${version} 118 rm -rf emacs-lispintro-${version}
113 119
114### Makefile ends here 120### Makefile ends here
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 47a6a84db06..8572fbe3e88 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12013-06-19 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (dist): Edit more configure variables.
4 Try to check that we do not miss any in future.
5
12013-06-17 Juanma Barranquero <lekktu@gmail.com> 62013-06-17 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * text.texi (Undo, Changing Properties): Fix typos. 8 * text.texi (Undo, Changing Properties): Fix typos.
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in
index 8e04d085c60..34c23218f2f 100644
--- a/doc/lispref/Makefile.in
+++ b/doc/lispref/Makefile.in
@@ -19,6 +19,9 @@
19 19
20SHELL = /bin/sh 20SHELL = /bin/sh
21 21
22# NB If you add any more configure variables,
23# update the sed rules in the dist target below.
24
22# Standard configure variables. 25# Standard configure variables.
23srcdir = @srcdir@ 26srcdir = @srcdir@
24 27
@@ -163,8 +166,12 @@ dist:
163 -e 's/^\(buildinfodir *=\).*/\1 ./' \ 166 -e 's/^\(buildinfodir *=\).*/\1 ./' \
164 -e 's/^\(clean:.*\)/\1 infoclean/' \ 167 -e 's/^\(clean:.*\)/\1 infoclean/' \
165 -e "s/@ver[s]ion@/${version}/" \ 168 -e "s/@ver[s]ion@/${version}/" \
169 -e 's/@MAKE[I]NFO@/makeinfo/' -e 's/@MK[D]IR_P@/mkdir -p/' \
170 -e 's/@IN[F]O_EXT@/.info/' -e 's/@IN[F]O_OPTS@//' \
166 ${srcdir}/Makefile.in > emacs-lispref-${version}/Makefile 171 ${srcdir}/Makefile.in > emacs-lispref-${version}/Makefile
167 tar -cf emacs-lispref-${version}.tar emacs-lispref-${version} 172 tar -cf emacs-lispref-${version}.tar emacs-lispref-${version}
173 @grep '@[A-Z]*@' emacs-lispref-${version}/Makefile && \
174 echo "WARNING: Unexpanded configure variables in Makefile?" || true
168 rm -rf emacs-lispref-${version} 175 rm -rf emacs-lispref-${version}
169 176
170### Makefile ends here 177### Makefile ends here