summaryrefslogtreecommitdiff
path: root/games/taipan/files/patch-aa
blob: 18aade17118a6b2e044f30d9deee54a0333ffdec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- Makefile.orig	Mon Dec 31 08:09:20 2001
+++ Makefile	Fri Mar 15 14:52:14 2002
@@ -18,12 +18,12 @@
 #   install             - installs taipan
 
 prefix = /usr/local
-bindir = $(prefix)/games
+bindir = $(prefix)/bin
 
 # 'make install' will compile and install the program
 
 CC = gcc
-CFLAGS = -O3 -Wall
+CFLAGS += -O3 -Wall
 OBJECTS = taipan.o
 LIBS = -lcurses
 RM = rm -f
@@ -34,7 +34,7 @@
 	$(RM) taipan $(OBJECTS)
 
 install: taipan
-	install -m 4755 -o root -g root -s taipan $(bindir)
+	install -m 755 -o root -g wheel -s taipan $(bindir)
 
 taipan: $(OBJECTS)
 	$(CC) $(CFLAGS) -o taipan $(OBJECTS) $(LIBS)