Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/conf Use an archive library for libkern if we ...



details:   https://anonhg.NetBSD.org/src/rev/dcda2fcf3200
branches:  trunk
changeset: 574788:dcda2fcf3200
user:      dsl <dsl%NetBSD.org@localhost>
date:      Sat Mar 12 14:39:12 2005 +0000

description:
Use an archive library for libkern if we don't support LKMs.
Enough to get INSTALL_TINY small enough again.
Someone else can fix it next time...

diffstat:

 sys/arch/i386/conf/Makefile.i386 |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r 5673a8b4065c -r dcda2fcf3200 sys/arch/i386/conf/Makefile.i386
--- a/sys/arch/i386/conf/Makefile.i386  Sat Mar 12 13:21:12 2005 +0000
+++ b/sys/arch/i386/conf/Makefile.i386  Sat Mar 12 14:39:12 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.i386,v 1.136 2004/07/15 03:35:20 atatat Exp $
+#      $NetBSD: Makefile.i386,v 1.137 2005/03/12 14:39:12 dsl Exp $
 
 # Makefile for NetBSD
 #
@@ -37,7 +37,11 @@
 ##
 ## (3) libkern and compat
 ##
+.if !empty(IDENT:M-DLKM)
 KERN_AS=       obj
+.else
+KERN_AS=       library
+.endif
 
 ##
 ## (4) local objects, compile rules, and dependencies



Home | Main Index | Thread Index | Old Index