aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-05-11 00:51:31 -0700
committerGlenn Morris2012-05-11 00:51:31 -0700
commita873f274ba20ab4f54feac40f8b9fe6298fb315a (patch)
treebb3ee03105a63e57e5fc5490c72c9443d56c0f40
parent53f7d2c04e3e5f2c340942b545e423a0717d34cb (diff)
downloademacs-a873f274ba20ab4f54feac40f8b9fe6298fb315a.tar.gz
emacs-a873f274ba20ab4f54feac40f8b9fe6298fb315a.zip
* Makefile.in (install-arch-indep): There are no more Makefile.c files.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in11
2 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ae355df0c8b..61f29a9ee78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12012-05-11 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (install-arch-indep): There are no more Makefile.c files.
4
12012-05-10 Glenn Morris <rgm@gnu.org> 52012-05-10 Glenn Morris <rgm@gnu.org>
2 6
3 * configure.in (LEIM_INSTALLDIR): New output variable. 7 * configure.in (LEIM_INSTALLDIR): New output variable.
diff --git a/Makefile.in b/Makefile.in
index 62e98fd451a..a8271f0ec9d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -495,9 +495,17 @@ set_installuser=for installuser in $${LOGNAME} $${USERNAME} $${USER} \
495 495
496## Note that we copy DOC* and then delete DOC 496## Note that we copy DOC* and then delete DOC
497## as a workaround for a bug in tar on Ultrix 4.2. 497## as a workaround for a bug in tar on Ultrix 4.2.
498## Ultrix is no longer supported since 23.1, but the relevant line
499## has another effect. We copy the entire etc/ directory from the
500## source tree first. For an in-tree build, this will include
501## any DOC* files there may be. So rm DOC does have an effect.
502## FIXME When we copy etc we should exclude DOC*, then copy only
503## the relevant one. We cannot delete DOC* from the destination directory,
504## because that may include pre-existing files from another emacs.
498 505
499## We install only the relevant DOC file if possible 506## We install only the relevant DOC file if possible
500## (ie DOC-${version}.buildnumber), otherwise DOC-${version}*. 507## (ie DOC-${version}.buildnumber), otherwise DOC-${version}*.
508## (Note "otherwise" is inaccurate since 2009-08-23.)
501 509
502## If people complain about the h flag in tar command, take that out. 510## If people complain about the h flag in tar command, take that out.
503## That flag is also used in leim/Makefile.in 511## That flag is also used in leim/Makefile.in
@@ -538,8 +546,7 @@ install-arch-indep: mkdir info install-etc
538 rm -f $${subdir}/*~ ; \ 546 rm -f $${subdir}/*~ ; \
539 rm -f $${subdir}/*.orig ; \ 547 rm -f $${subdir}/*.orig ; \
540 [ "$${dir}" != "${srcdir}/etc" ] && \ 548 [ "$${dir}" != "${srcdir}/etc" ] && \
541 rm -f $${subdir}/[mM]akefile*.c $${subdir}/[mM]akefile*[.-]in \ 549 rm -f $${subdir}/[mM]akefile*[.-]in $${subdir}/[mM]akefile ; \
542 $${subdir}/[mM]akefile ; \
543 rm -f $${subdir}/ChangeLog* ; \ 550 rm -f $${subdir}/ChangeLog* ; \
544 done) ; \ 551 done) ; \
545 done 552 done