diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-19 11:47:39 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-19 11:47:39 -0700 |
commit | afdc34774001166f25e998ba925301338001c3cc (patch) | |
tree | 7c813966abb669657cadb4da010f834b231f4776 /Makefile.in | |
parent | 3858bfe7c9f11d482715879fe40f06ce3dd6c009 (diff) | |
download | emacs-afdc34774001166f25e998ba925301338001c3cc.tar.gz |
Undo part of previous change, in case it makes command line too long
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 14 |
1 files changed, 9 insertions, 5 deletions
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 |