summaryrefslogtreecommitdiff
path: root/sysutils/crashme
diff options
context:
space:
mode:
authorhubertf <hubertf>1998-11-24 00:20:13 +0000
committerhubertf <hubertf>1998-11-24 00:20:13 +0000
commitdc717b44b1e3d01d01f7f5c33eee7c97bc19cd0e (patch)
treebad2c74e5d8a50a6c6357c9baaea40a1a91e018f /sysutils/crashme
parentf1e0a06303a2fd2489c91475f59ae4d9984bfca7 (diff)
downloadpkgsrc-dc717b44b1e3d01d01f7f5c33eee7c97bc19cd0e.tar.gz
optimize, for mycroft
Diffstat (limited to 'sysutils/crashme')
-rw-r--r--sysutils/crashme/patches/patch-aa27
1 files changed, 21 insertions, 6 deletions
diff --git a/sysutils/crashme/patches/patch-aa b/sysutils/crashme/patches/patch-aa
index 5f4521fb8fb..423b1a68ce3 100644
--- a/sysutils/crashme/patches/patch-aa
+++ b/sysutils/crashme/patches/patch-aa
@@ -1,12 +1,27 @@
-$NetBSD: patch-aa,v 1.2 1998/08/07 11:14:04 agc Exp $
+$NetBSD: patch-aa,v 1.3 1998/11/24 00:20:13 hubertf Exp $
---- makefile 1997/11/14 09:49:34 1.1
-+++ makefile 1997/11/14 09:51:01
-@@ -10,3 +10,8 @@
- pddet.o: pddet.c
- cc -c pddet.c
+--- makefile.orig Tue Nov 24 01:08:49 1998
++++ makefile Tue Nov 24 01:09:26 1998
+@@ -1,12 +1,19 @@
++CFLAGS= -O6
++
+ all: crashme pddet
+
+ crashme: crashme.o
+- cc -o crashme crashme.o
++ ${CC} ${CFLAGS} -o crashme crashme.o
+ crashme.o: crashme.c
+- cc -c crashme.c
++ ${CC} ${CFLAGS} -c crashme.c
+ pddet: pddet.o
+- cc -o pddet pddet.o
++ ${CC} ${CFLAGS} -o pddet pddet.o
+ pddet.o: pddet.c
+- cc -c pddet.c
++ ${CC} ${CFLAGS} -c pddet.c
+
+
+install: crashme pddet
+ ${INSTALL} -c -m 0755 crashme ${PREFIX}/sbin/crashme
+ ${INSTALL} -c -m 0755 pddet ${PREFIX}/sbin/pddet