diff options
author | grant <grant@pkgsrc.org> | 2004-02-08 12:58:55 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-02-08 12:58:55 +0000 |
commit | 624e0dec35c3d634021b968d39b22bfce28fd3c7 (patch) | |
tree | 7e5597bf09dff1c328a55e816473f7f5ac559e09 /sysutils/crashme/patches | |
parent | 727d3d4ea3a976d87c622c062f8b86f014dca14f (diff) | |
download | pkgsrc-624e0dec35c3d634021b968d39b22bfce28fd3c7.tar.gz |
don't override CFLAGS. fixes build with SunPro.
Diffstat (limited to 'sysutils/crashme/patches')
-rw-r--r-- | sysutils/crashme/patches/patch-aa | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sysutils/crashme/patches/patch-aa b/sysutils/crashme/patches/patch-aa index dd68b5d8f56..fe62725676f 100644 --- a/sysutils/crashme/patches/patch-aa +++ b/sysutils/crashme/patches/patch-aa @@ -1,10 +1,8 @@ -$NetBSD: patch-aa,v 1.4 1998/11/24 05:23:23 mycroft Exp $ +$NetBSD: patch-aa,v 1.5 2004/02/08 12:58:55 grant Exp $ ---- makefile.orig Tue Nov 24 01:08:49 1998 -+++ makefile Tue Nov 24 01:09:26 1998 -@@ -1,12 +1,19 @@ -+CFLAGS= -O2 -+ +--- makefile.orig 2004-02-08 23:56:35.000000000 +1100 ++++ makefile +@@ -1,12 +1,17 @@ all: crashme pddet crashme: crashme.o @@ -20,8 +18,8 @@ $NetBSD: patch-aa,v 1.4 1998/11/24 05:23:23 mycroft Exp $ 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 |