Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Feb 2003 02:50:49 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 26002 for review
Message-ID:  <200302271050.h1RAonOQ069294@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=26002

Change 26002 by jmallett@jmallett_dalek on 2003/02/27 02:50:17

	Only use a backwards kernel config dir for pc98, otherwise use
	things the "right way".  Maybe this should be done by checking
	for which -directory- exists, but really I think not proliferating
	the backwards style is right.  We use things arch-wise, PowerPC
	will very soon.

Affected files ...

.. //depot/projects/mips/Makefile.inc1#9 edit

Differences ...

==== //depot/projects/mips/Makefile.inc1#9 (text+ko) ====

@@ -448,7 +448,11 @@
 INSTKERNNAME?=	kernel
 
 KRNLSRCDIR=	${.CURDIR}/sys
+.if ${TARGET} == "pc98"
 KRNLCONFDIR=	${KRNLSRCDIR}/${TARGET}/conf
+.else
+KRNLCONFDIR=	${KRNLSRCDIR}/${TARGET_ARCH}/conf
+.endif
 KRNLOBJDIR=	${OBJTREE}${KRNLSRCDIR}
 KERNCONFDIR?=	${KRNLCONFDIR}
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200302271050.h1RAonOQ069294>