diff options
Diffstat (limited to 'games/xconq/files/patch-ad')
-rw-r--r-- | games/xconq/files/patch-ad | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/games/xconq/files/patch-ad b/games/xconq/files/patch-ad index 424411f511dd..53098bbd52c5 100644 --- a/games/xconq/files/patch-ad +++ b/games/xconq/files/patch-ad @@ -1,8 +1,8 @@ ---- Makefile.in.orig Sat Feb 21 16:26:25 1998 -+++ Makefile.in Sun Apr 30 18:36:42 2000 -@@ -25,12 +25,12 @@ - - srcdir = . +--- 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 @@ -18,12 +18,24 @@ SHELL = /bin/sh -@@ -44,7 +44,7 @@ +@@ -46,8 +46,6 @@ - CC = cc + CC = @CC@ -CFLAGS = -g -+CFLAGS ?= -O - +- 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 ; \ |