Undo part of previous change, in case it makes command line too long

This commit is contained in:
Glenn Morris 2012-05-19 11:47:39 -07:00
parent 3858bfe7c9
commit afdc347740
2 changed files with 9 additions and 6 deletions

View file

@ -11,7 +11,6 @@
2012-05-19 Glenn Morris <rgm@gnu.org>
* 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.

View file

@ -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