diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-09-06 09:30:09 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-09-06 09:30:09 +0000 |
commit | dff462c36334706803f11f3616797e4440cdaabf (patch) | |
tree | 05bb3002f732a08a225c0b0e81e36972482e0ead /sbin/savecore/Makefile | |
parent | f6a9e03fe5b14fa1078b7b5914337598ad12faf0 (diff) |
* Switch from doing compress(1)ed crashdumps with the -z flag to using
gzip(1). gdb doesn't understand these, but then again it didn't
understand compressed crashdumps either.
* Change a stray lseek() into a Lseek()
* Remove the extraneous prototype for log() which has apparently never
existed in FreeBSD's sources
Obtained from: NetBSD (partially)
MFC after: 2 weeks
Notes
Notes:
svn path=/head/; revision=83140
Diffstat (limited to 'sbin/savecore/Makefile')
-rw-r--r-- | sbin/savecore/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sbin/savecore/Makefile b/sbin/savecore/Makefile index 917c9c9a2c2e..e0d1d088db55 100644 --- a/sbin/savecore/Makefile +++ b/sbin/savecore/Makefile @@ -2,11 +2,10 @@ # $FreeBSD$ PROG= savecore -SRCS= savecore.c zopen.c +SRCS= savecore.c MAN= savecore.8 -ZOPENPATH= ${.CURDIR}/../../usr.bin/compress -.PATH: ${ZOPENPATH} -CFLAGS+= -I${ZOPENPATH} +DPADD+= ${LIBZ} +LDADD+= -lz .include <bsd.prog.mk> |