blob: 7f70541f8cfd213b9df5228e35a8e6e2e3b9fdd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
.include <src.opts.mk>
WORLDPACKAGE= bootloader
SUBPACKAGES=
# bootloader-dbg is only built if we're building userboot, which is specific
# to amd64.
.if ${MACHINE_CPUARCH} == "amd64"
SUBPACKAGES+= dbg
.endif
# The bootloader "dev" package only contains manpages.
.if ${MK_MAN} != "no"
. if ${MK_MANSPLITPKG} != "no"
SUBPACKAGES+= man
. else
SUBPACKAGES+= dev
. endif
.endif
# The bootloader isn't normally used in a jail.
PKG_SETS= minimal
.include <bsd.pkg.mk>
|