diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-11 00:51:31 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-11 00:51:31 -0700 |
commit | a873f274ba20ab4f54feac40f8b9fe6298fb315a (patch) | |
tree | bb3ee03105a63e57e5fc5490c72c9443d56c0f40 /Makefile.in | |
parent | 53f7d2c04e3e5f2c340942b545e423a0717d34cb (diff) | |
download | emacs-a873f274ba20ab4f54feac40f8b9fe6298fb315a.tar.gz |
* Makefile.in (install-arch-indep): There are no more Makefile.c files.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 9 insertions, 2 deletions
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} \ ## Note that we copy DOC* and then delete DOC ## as a workaround for a bug in tar on Ultrix 4.2. +## Ultrix is no longer supported since 23.1, but the relevant line +## has another effect. We copy the entire etc/ directory from the +## source tree first. For an in-tree build, this will include +## any DOC* files there may be. So rm DOC does have an effect. +## FIXME When we copy etc we should exclude DOC*, then copy only +## the relevant one. We cannot delete DOC* from the destination directory, +## because that may include pre-existing files from another emacs. ## We install only the relevant DOC file if possible ## (ie DOC-${version}.buildnumber), otherwise DOC-${version}*. +## (Note "otherwise" is inaccurate since 2009-08-23.) ## If people complain about the h flag in tar command, take that out. ## That flag is also used in leim/Makefile.in @@ -538,8 +546,7 @@ install-arch-indep: mkdir info install-etc rm -f $${subdir}/*~ ; \ rm -f $${subdir}/*.orig ; \ [ "$${dir}" != "${srcdir}/etc" ] && \ - rm -f $${subdir}/[mM]akefile*.c $${subdir}/[mM]akefile*[.-]in \ - $${subdir}/[mM]akefile ; \ + rm -f $${subdir}/[mM]akefile*[.-]in $${subdir}/[mM]akefile ; \ rm -f $${subdir}/ChangeLog* ; \ done) ; \ done |