From: Glenn Morris Date: Mon, 16 Nov 2009 02:06:36 +0000 (+0000) Subject: (install-arch-indep): Use a more restrictive Makefile X-Git-Tag: emacs-pretest-23.1.90~404 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=92424f959d8e55d97d6000728f5c3500cca7ccec;p=emacs.git (install-arch-indep): Use a more restrictive Makefile pattern, so as not to exclude makefile*.el. (Bug#4912) --- diff --git a/ChangeLog b/ChangeLog index fe3d8f4689a..30e7dbac29c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-11-16 Glenn Morris + + * Makefile.in (install-arch-indep): Use a more restrictive Makefile + pattern, so as not to exclude makefile*.el. (Bug#4912) + 2009-11-14 Jan Djärv * configure.in: --enable-autodepend is new. Check for GNU Make diff --git a/Makefile.in b/Makefile.in index ad77e06d439..2c4e1143066 100644 --- a/Makefile.in +++ b/Makefile.in @@ -495,7 +495,8 @@ install-arch-indep: mkdir info install-etc rm -f $${subdir}/*~ ; \ rm -f $${subdir}/*.orig ; \ [ "$${dir}" != "${srcdir}/etc" ] && \ - rm -f $${subdir}/[mM]akefile* ; \ + rm -f $${subdir}/[mM]akefile*.c $${subdir}/[mM]akefile*[.-]in \ + $${subdir}/[mM]akefile ; \ rm -f $${subdir}/ChangeLog* ; \ rm -f $${subdir}/dired.todo ; \ done) ; \