diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-02-25 22:49:45 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-02-25 22:49:45 +0000 |
commit | 80b7389956b82f0b0e2f6ee4d2e3c4d6167dba1a (patch) | |
tree | 6e890513d91f227ae3d1eaa2c6058b8f1e3fc59b | |
parent | 3b72e35bc75366d279b6e0219629a603ce91e22a (diff) | |
download | emacs-80b7389956b82f0b0e2f6ee4d2e3c4d6167dba1a.tar.gz |
(install-arch-indep): Do chmod a+x on subdirs.
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
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}/\#* ; \ |