Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b73172f

Browse files
committed
Our (FreeBSD's) security officer doesn't like group-writable directories and sent a patch; don't install *.orig.
1 parent 2d21863 commit b73172f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,8 @@ SHELL= /bin/sh
103103
EXE=
104104

105105
# Modes for directories, executables and data files created by the
106-
# install process. Default to group-writable directories but
107-
# user-only-writable for executables and data files.
108-
DIRMODE= 775
106+
# install process. Default to user-only-writable for all file types.
107+
DIRMODE= 755
109108
EXEMODE= 755
110109
FILEMODE= 644
111110

@@ -318,6 +317,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR)
318317
case $$i in \
319318
*CVS) ;; \
320319
*.py[co]) ;; \
320+
*.orig) ;; \
321321
*~) ;; \
322322
*) \
323323
if test -d $$i; then continue; fi; \

0 commit comments

Comments
 (0)