From afdc34774001166f25e998ba925301338001c3cc Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 19 May 2012 11:47:39 -0700 Subject: [PATCH] Undo part of previous change, in case it makes command line too long --- ChangeLog | 1 - Makefile.in | 14 +++++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3ed2fb71a25..7e98201cc61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,7 +11,6 @@ 2012-05-19 Glenn Morris * Makefile.in (install-arch-indep): Remove unneeded subshell. - Combine some rm commands. * Makefile.in (install-arch-indep): Remove unneeded chmod. Set permissions of lisp/subdirs.el. diff --git a/Makefile.in b/Makefile.in index f11a8b3ed06..74111dc8348 100644 --- a/Makefile.in +++ b/Makefile.in @@ -531,12 +531,16 @@ install-arch-indep: install-leim install-info install-man ${INSTALL_ARCH_INDEP_E tar -xvf - && cat > /dev/null) || exit 1; \ [ "$${dir}" != "${srcdir}/etc" ] || rm -f $${dest}/DOC* ; \ for subdir in `find $${dest} -type d -print` ; do \ - rm -f $${subdir}/.gitignore $${subdir}/.arch-inventory \ - $${subdir}/.DS_Store $${subdir}/ChangeLog* \ - $${subdir}/\#* $${subdir}/.\#* \ - $${subdir}/*~ $${subdir}/*.orig ; \ + rm -f $${subdir}/.gitignore ; \ + rm -f $${subdir}/.arch-inventory ; \ + rm -f $${subdir}/.DS_Store ; \ + rm -f $${subdir}/\#* ; \ + rm -f $${subdir}/.\#* ; \ + rm -f $${subdir}/*~ ; \ + rm -f $${subdir}/*.orig ; \ + rm -f $${subdir}/ChangeLog* ; \ [ "$${dir}" != "${srcdir}/etc" ] && \ - rm -f $${subdir}/[mM]akefile*[.-]in $${subdir}/[mM]akefile ; \ + rm -f $${subdir}/[mM]akefile*[.-]in $${subdir}/[mM]akefile ; \ done ; \ find $${dest} -exec chown $${installuser} {} ';' ;\ done -- 2.39.2