summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-05-27 08:20:12 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-05-27 08:20:12 +0000
commit84e80d4d82e0bee9d1a2ba538078804ebf048375 (patch)
tree33bafecb129a6a36884f7a4b82f447ded2a1f9e0 /share
parent94cc16ecde876302c1c68b307883e5b099ba7bec (diff)
Stripping lkm's on install is a bad idea. Don't do it.
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.lkm.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.lkm.mk b/share/mk/bsd.lkm.mk
index 0f29b3ccd7a..ae9f072680a 100644
--- a/share/mk/bsd.lkm.mk
+++ b/share/mk/bsd.lkm.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.lkm.mk,v 1.5 1996/04/18 11:21:03 mickey Exp $
+# $OpenBSD: bsd.lkm.mk,v 1.6 1996/05/27 08:20:11 tholo Exp $
# from @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
.if exists(${.CURDIR}/../Makefile.inc)
@@ -57,7 +57,7 @@ afterinstall:
.if !target(realinstall)
realinstall:
.if defined(LKM)
- install ${COPY} ${STRIP} -o ${LKMOWN} -g ${LKMGRP} -m ${LKMMODE} \
+ install ${COPY} -o ${LKMOWN} -g ${LKMGRP} -m ${LKMMODE} \
${COMBINED} ${DESTDIR}${LKMDIR}/${LKM}.o
.endif
.endif