From 2cb56dabe9209af59a72de1cc8ab7ad527d2dfea Mon Sep 17 00:00:00 2001 From: Colin Percival Date: Wed, 24 May 2006 03:34:57 +0000 Subject: [PATCH] If the user asks for "kernel sources" to be installed, extract the SRC_BASE package (src/[A-Z]*) as well as SRC_SYS (src/sys/*). This allows users who only install the kernel source code to use the modern "make buildkernel" approach. Discussed with: re (scottl, kensmith) MFC after: 3 days --- usr.sbin/sysinstall/dist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c index 2dcd8c13bcc..b1eb018a90d 100644 --- a/usr.sbin/sysinstall/dist.c +++ b/usr.sbin/sysinstall/dist.c @@ -254,7 +254,7 @@ distSetKernDeveloper(dialogMenuItem *self) distReset(NULL); Dists = _DIST_DEVELOPER; - SrcDists = DIST_SRC_SYS; + SrcDists = DIST_SRC_SYS | DIST_SRC_BASE; KernelDists = selectKernel(); i = distMaybeSetPorts(self); distVerifyFlags();