aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-09-12 07:03:18 +0000
committerGlenn Morris2007-09-12 07:03:18 +0000
commit5a6a83f216e499e598bc95d2ae6b820ae004ea6c (patch)
treea073443750190ffbee428be64dec05f8c33a6d30
parenta3372e09676753438a3f6260e3230cc490c3736a (diff)
downloademacs-5a6a83f216e499e598bc95d2ae6b820ae004ea6c.tar.gz
emacs-5a6a83f216e499e598bc95d2ae6b820ae004ea6c.zip
(install-arch-indep): Do not exclude the etc/ Makefiles.
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in6
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 981be2f695f..0397fc19d78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
12007-09-12 Glenn Morris <rgm@gnu.org> 12007-09-12 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.in (AC_FUNC_ALLOCA): Throw an error if a system
4 implementation of alloca is not found.
5
3 * Makefile.in (SOURCES, unlock, relock): Delete. 6 * Makefile.in (SOURCES, unlock, relock): Delete.
4 (install-arch-indep): Do not exclude the etc/ Makefiles. 7 (install-arch-indep): Do not exclude the etc/ Makefiles.
5 8
diff --git a/Makefile.in b/Makefile.in
index dc32128e7c1..acf865239ff 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -420,6 +420,9 @@ install-arch-dep: mkdir
420 420
421## If people complain about the h flag in tar command, take that out. 421## If people complain about the h flag in tar command, take that out.
422## That flag is also used in leim/Makefile.in 422## That flag is also used in leim/Makefile.in
423
424## Note that the Makefiles in the etc directory are potentially useful
425## in an installed Emacs, so should not be excluded.
423install-arch-indep: mkdir info 426install-arch-indep: mkdir info
424 -set ${COPYDESTS} ; \ 427 -set ${COPYDESTS} ; \
425 unset CDPATH; \ 428 unset CDPATH; \
@@ -452,7 +455,8 @@ install-arch-indep: mkdir info
452 rm -f $${subdir}/.\#* ; \ 455 rm -f $${subdir}/.\#* ; \
453 rm -f $${subdir}/*~ ; \ 456 rm -f $${subdir}/*~ ; \
454 rm -f $${subdir}/*.orig ; \ 457 rm -f $${subdir}/*.orig ; \
455 rm -f $${subdir}/[mM]akefile* ; \ 458 [ "$${dir}" != "${srcdir}/etc" ] && \
459 rm -f $${subdir}/[mM]akefile* ; \
456 rm -f $${subdir}/ChangeLog* ; \ 460 rm -f $${subdir}/ChangeLog* ; \
457 rm -f $${subdir}/dired.todo ; \ 461 rm -f $${subdir}/dired.todo ; \
458 done) ; \ 462 done) ; \