Changeset View
Changeset View
Standalone View
Standalone View
Makefile.inc1
| Show First 20 Lines • Show All 1,841 Lines • ▼ Show 20 Lines | |||||
| .endif | .endif | ||||
| .if ${NO_INSTALLEXTRAKERNELS} != "yes" | .if ${NO_INSTALLEXTRAKERNELS} != "yes" | ||||
| .if defined(NO_INSTALLKERNEL) | .if defined(NO_INSTALLKERNEL) | ||||
| INSTALLEXTRAKERNELS= ${BUILDKERNELS} | INSTALLEXTRAKERNELS= ${BUILDKERNELS} | ||||
| .else | .else | ||||
| # First kernel is installed separately by INSTALLKERNEL, typically to | # First kernel is installed separately by INSTALLKERNEL, typically to | ||||
| # /boot/kernel, rather than to a config-suffixed directory. | # /boot/kernel, rather than to a config-suffixed directory. | ||||
| .if ${BUILDKERNELS:[#]} > 1 | |||||
| INSTALLEXTRAKERNELS= ${BUILDKERNELS:[2..-1]} | INSTALLEXTRAKERNELS= ${BUILDKERNELS:[2..-1]} | ||||
| .else | |||||
| INSTALLEXTRAKERNELS= | |||||
| .endif | |||||
| .endif | .endif | ||||
| .endif | .endif | ||||
| # | # | ||||
| # Don't allow installworld or installkernel on a pkgbase system. This avoids | # Don't allow installworld or installkernel on a pkgbase system. This avoids | ||||
| # accidentally updating a pkgbase system with install{world,kernel}, causing | # accidentally updating a pkgbase system with install{world,kernel}, causing | ||||
| # the installed system to become out of date with the package database. | # the installed system to become out of date with the package database. | ||||
| # | # | ||||
| ▲ Show 20 Lines • Show All 2,240 Lines • Show Last 20 Lines | |||||