From: Guido van Rossum Date: Tue, 29 Aug 2000 15:00:11 +0000 (+0000) Subject: "tg@FreeBSD.org" writes: X-Git-Tag: v2.0b1~187 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b73172f227384ad6f825031ef50c83cca7dd9ef8;p=thirdparty%2FPython%2Fcpython.git "tg@FreeBSD.org" writes: Our (FreeBSD's) security officer doesn't like group-writable directories and sent a patch; don't install *.orig. --- diff --git a/Makefile.in b/Makefile.in index 8c499e9c28f3..c84e96b82f69 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; \