From: Karl Heuer Date: Wed, 25 Feb 1998 22:49:45 +0000 (+0000) Subject: (install-arch-indep): Do chmod a+x on subdirs. X-Git-Tag: emacs-20.3~2099 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5fab72129def1760a6776c34247a24e182b023e5;p=emacs.git (install-arch-indep): Do chmod a+x on subdirs. --- diff --git a/Makefile.in b/Makefile.in index 7382e76888e..c94ef22fcfa 100644 --- a/Makefile.in +++ b/Makefile.in @@ -323,6 +323,7 @@ install-arch-indep: mkdir (cd $${dir}; tar -cf - . ) \ |(cd $${dest};umask 022; tar -xvf - && cat > /dev/null); \ for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ + chmod a+rx $${subdir} ; \ rm -rf $${subdir}/RCS ; \ rm -rf $${subdir}/CVS ; \ rm -f $${subdir}/\#* ; \