mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
274de75e9b
PR: 19702 Submitted by: maintainer
42 lines
764 B
Plaintext
42 lines
764 B
Plaintext
--- Makefile.in.orig Tue Jun 13 08:04:45 2000
|
|
+++ Makefile.in Wed Jun 28 21:37:36 2000
|
|
@@ -27,12 +27,12 @@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
-GAMEUID = games
|
|
-GAMEGRP = bin
|
|
+GAMEUID = root
|
|
+GAMEGRP = games
|
|
|
|
-GAMEPERM = 04755
|
|
-DIRPERM = 0755
|
|
-FILEPERM = 0644
|
|
+GAMEPERM = 02755
|
|
+DIRPERM = 0775
|
|
+FILEPERM = 0664
|
|
|
|
SHELL = /bin/sh
|
|
|
|
@@ -46,8 +46,6 @@
|
|
|
|
CC = @CC@
|
|
|
|
-CFLAGS = -g
|
|
-
|
|
RANLIB = ranlib
|
|
|
|
AR = ar
|
|
@@ -274,10 +272,8 @@
|
|
install-dirs:
|
|
@for i in $(MAKEDIRS) ; do \
|
|
echo Making $$i... ; \
|
|
- parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
|
|
- if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
|
|
if [ ! -d $$i ] ; then \
|
|
- if mkdir $$i ; then \
|
|
+ if mkdir -p $$i ; then \
|
|
true ; \
|
|
else \
|
|
exit 1 ; \
|