1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/lang/python31/files/patch-aa
Thomas Gellekum 0221fd2063 Don't create group-writable directories.
Submitted by:	jedgar
2000-08-14 12:36:05 +00:00

21 lines
696 B
Plaintext

--- Makefile.in.orig Tue Feb 23 10:43:15 1999
+++ Makefile.in Sun Aug 13 21:28:59 2000
@@ -125,14 +125,14 @@
# 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
+DIRMODE= 755
EXEMODE= 755
FILEMODE= 644
# Portable install script (configure doesn't always guess right)
INSTALL= @srcdir@/install-sh -c
-INSTALL_PROGRAM=${INSTALL} -m $(EXEMODE)
-INSTALL_DATA= ${INSTALL} -m $(FILEMODE)
+INSTALL_PROGRAM=${BSD_INSTALL_SCRIPT}
+INSTALL_DATA= ${BSD_INSTALL_DATA}
# Use this to make a link between python$(VERSION) and python in $(BINDIR)
LN=@LN@