summaryrefslogtreecommitdiff
path: root/graphics/mgl/patches/patch-aj
blob: 11df844172f174b33cd17313a5697d1b719e91f0 (plain)
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
$NetBSD: patch-aj,v 1.2 2001/03/20 13:54:32 wiz Exp $

--- nine/Makefile.orig	Fri Mar  9 20:05:20 2001
+++ nine/Makefile	Tue Mar 13 15:19:47 2001
@@ -28,7 +28,7 @@
 endif
 
 gesture.h: form.def genform.sh
-	./genform.sh > gesture.h
+	sh ./genform.sh > gesture.h
 
 lex.yy.c : pattern.l
 	flex -l pattern.l
@@ -37,10 +37,10 @@
 endif
 
 pattern.l : form.def genform.sh genpattern.sh
-	./genform.sh -l | \
+	sh ./genform.sh -l | \
 	sed -e 's/\(return KEYCODE_[^;][^;]*;\)/YY_FLUSH_BUFFER ;\1/g' \
 	 > pattern.txt
-	./genpattern.sh > pattern.l
+	sh ./genpattern.sh > pattern.l
 
 gpnine.so: ${OBJS}
 	$(SHLIB_LD) $(SHLIB_LDFLAGS) -o gpnine.so ${OBJS} $(LDFLAGS)