Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions crossdev
Original file line number Diff line number Diff line change
Expand Up @@ -949,6 +949,8 @@ AENV=""
BCAT="sys-devel" ; BPKG="binutils" ; BVER="" BUSE="" BENV="" BOVL="" BMASK="" BFORCE=""
GCAT="sys-devel" ; GPKG="gcc" ; GVER="" GUSE="" GENV="" GOVL="" GMASK="" GFORCE=""
KCAT="sys-kernel" ; KPKG="linux-headers" ; KVER="" KUSE="" KENV="" KOVL="" KMASK="" KFORCE=""
K2CAT="[none]" ; K2PKG="[none]" ; K2VER="" K2USE="" K2ENV="" K2OVL="" K2MASK="" K2FORCE=""
K3CAT="[none]" ; K3PKG="[none]" ; K3VER="" K3USE="" K3ENV="" K3OVL="" K3MASK="" K3FORCE=""
LCAT="sys-libs" ; LPKG="[none]" ; LVER="" LUSE="" LENV="" LOVL="" LMASK="" LFORCE=""
DCAT="dev-debug" ; DPKG="gdb" ; DVER="" DUSE="" DENV="" DOVL="" DMASK="" DFORCE=""
RCAT="llvm-runtimes" ; RPKG="compiler-rt" ; RVER="" RUSE="" RENV="" ROVL="" RMASK="" RFORCE=""
Expand Down Expand Up @@ -1977,7 +1979,7 @@ if ! ex_fast ; then
USE="${KUSE} ${USE} headers-only" \
doemerge ${KPKG} ${KPKG}-stage1

if [[ -n ${K2PKG} ]] ; then
if [[ ${K2PKG} != "[none]" ]] ; then
# KPKG may need K2PKG to install everything, so
# build it as a dependency first.
set_eopts_on_pkg_status ${K2PKG} headers-only
Expand All @@ -1990,7 +1992,7 @@ if ! ex_fast ; then
doemerge ${KPKG} ${KPKG}-stage2
fi

if [[ -n ${K3PKG} ]] ; then
if [[ ${K3PKG} != "[none]" ]] ; then
# LPKG may need K3PKG to install everything, so
# build it as a dependency first.
set_eopts_on_pkg_status ${K3PKG} headers-only
Expand All @@ -2009,13 +2011,13 @@ if ! ex_fast ; then
USE="${LUSE} ${USE} ${LUSE_DISABLE}" \
doemerge ${LPKG}

if [[ -n ${K2PKG} ]] ; then
if [[ ${K2PKG} != "[none]" ]] ; then
set_eopts_on_pkg_status ${K2PKG} headers-only

USE="${KUSE} ${USE} -headers-only" doemerge ${K2PKG} ${K2PKG}-stage2
fi

if [[ -n ${K3PKG} ]] ; then
if [[ ${K3PKG} != "[none]" ]] ; then
set_eopts_on_pkg_status ${K3PKG} headers-only

USE="${KUSE} ${USE} -headers-only" doemerge ${K3PKG} ${K3PKG}-stage2
Expand Down