diff options
Diffstat (limited to 'games/oonsoo/files')
-rw-r--r-- | games/oonsoo/files/patch-aa | 24 | ||||
-rw-r--r-- | games/oonsoo/files/patch-ab | 20 |
2 files changed, 38 insertions, 6 deletions
diff --git a/games/oonsoo/files/patch-aa b/games/oonsoo/files/patch-aa index 13df58eaebee..f337d33ce630 100644 --- a/games/oonsoo/files/patch-aa +++ b/games/oonsoo/files/patch-aa @@ -1,11 +1,23 @@ ---- Makefile.orig Thu Feb 24 03:02:50 2000 -+++ Makefile Thu Feb 24 03:03:06 2000 -@@ -12,7 +12,7 @@ - CPPFLAGS=-O -ansi +--- Makefile.orig Thu Feb 24 03:29:29 2000 ++++ Makefile Thu Feb 24 03:42:58 2000 +@@ -6,16 +6,16 @@ + ############################################################################### + + ## C++ compiler to use +-CC=g++ ++CC = ${CXX} + + ## C++ compiler flags +-CPPFLAGS=-O -ansi ++CPPFLAGS = ${CXXFLAGS} -ansi ## System Includes -SYS_INCLUDES = -+SYS_INCLUDE = -I/usr/X11R6/include ++SYS_INCLUDE = -I${X11BASE}/include ## System Libraries - SYS_LIBS = -L/usr/X11R6/lib -lX11 +-SYS_LIBS = -L/usr/X11R6/lib -lX11 ++SYS_LIBS = -L${X11BASE}/lib -lX11 + + ## Archiver + AR=ar diff --git a/games/oonsoo/files/patch-ab b/games/oonsoo/files/patch-ab new file mode 100644 index 000000000000..4d61eb201333 --- /dev/null +++ b/games/oonsoo/files/patch-ab @@ -0,0 +1,20 @@ +--- Makefile.common.orig Tue Jan 11 08:36:39 2000 ++++ Makefile.common Thu Feb 24 04:14:30 2000 +@@ -33,7 +33,7 @@ + echo ""; \ + echo "------ Building: $$dir"; \ + cd $$dir; \ +- make $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" all; \ ++ $(MAKE) $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" all; \ + if [ $$? -eq 0 ] ; \ + then \ + cd ..; \ +@@ -48,7 +48,7 @@ + echo ""; \ + echo "------ Cleaning: $$dir"; \ + cd $$dir; \ +- make $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" clean; \ ++ $(MAKE) $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" clean; \ + if [ $$? -eq 0 ] ; \ + then \ + cd ..; \ |