# HG changeset patch # User Glenn Morris # Date 1189580519 0 # Node ID 334c557039a09f83079e84d373143fb9e43a9bc3 # Parent 46eb88ae62212f635b72044f55edc85ab73e8130 (install-arch-indep): Do not exclude the etc/ Makefiles. diff -r 46eb88ae6221 -r 334c557039a0 Makefile.in --- a/Makefile.in Wed Sep 12 07:01:46 2007 +0000 +++ b/Makefile.in Wed Sep 12 07:01:59 2007 +0000 @@ -420,6 +420,9 @@ ## If people complain about the h flag in tar command, take that out. ## That flag is also used in leim/Makefile.in + +## Note that the Makefiles in the etc directory are potentially useful +## in an installed Emacs, so should not be excluded. install-arch-indep: mkdir info -set ${COPYDESTS} ; \ unset CDPATH; \ @@ -452,7 +455,8 @@ rm -f $${subdir}/.\#* ; \ rm -f $${subdir}/*~ ; \ rm -f $${subdir}/*.orig ; \ - rm -f $${subdir}/[mM]akefile* ; \ + [ "$${dir}" != "${srcdir}/etc" ] && \ + rm -f $${subdir}/[mM]akefile* ; \ rm -f $${subdir}/ChangeLog* ; \ rm -f $${subdir}/dired.todo ; \ done) ; \