diff options
author | Guido van Rossum <guido@python.org> | 2000-08-29 15:00:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-08-29 15:00:11 (GMT) |
commit | b73172f227384ad6f825031ef50c83cca7dd9ef8 (patch) | |
tree | 3b8138db68a9a66eb26a97eb7be7aa02ab3fdea3 /Makefile.in | |
parent | 2d21863266ad3b7551e03933abbfadaa86b95fb2 (diff) | |
download | cpython-b73172f227384ad6f825031ef50c83cca7dd9ef8.zip cpython-b73172f227384ad6f825031ef50c83cca7dd9ef8.tar.gz cpython-b73172f227384ad6f825031ef50c83cca7dd9ef8.tar.bz2 |
"tg@FreeBSD.org" writes:
Our (FreeBSD's) security officer doesn't like
group-writable directories and sent a patch;
don't install *.orig.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 8c499e9..c84e96b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -103,9 +103,8 @@ SHELL= /bin/sh EXE= # Modes for directories, executables and data files created by the -# install process. Default to group-writable directories but -# user-only-writable for executables and data files. -DIRMODE= 775 +# install process. Default to user-only-writable for all file types. +DIRMODE= 755 EXEMODE= 755 FILEMODE= 644 @@ -318,6 +317,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR) case $$i in \ *CVS) ;; \ *.py[co]) ;; \ + *.orig) ;; \ *~) ;; \ *) \ if test -d $$i; then continue; fi; \ |