diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-03-29 10:20:24 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-03-29 10:44:39 -0700 |
commit | f3f818eb40d144d40e2496cc87eceea79db380f8 (patch) | |
tree | f050d55475a731e7f40dea3ebb53edad594016a9 /scripts | |
parent | scripts/bootstrap.sh: Emerge the actual libc (diff) | |
download | gentoo-f3f818eb40d144d40e2496cc87eceea79db380f8.tar.gz gentoo-f3f818eb40d144d40e2496cc87eceea79db380f8.tar.bz2 gentoo-f3f818eb40d144d40e2496cc87eceea79db380f8.zip |
scripts/bootstrap.sh: Expand virtual/os-headers fallback
Unlikely that this fallback will ever be hit, but might as well prepare.
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index bfe81ac51ddf..e0dae52f02de 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -292,7 +292,7 @@ if [[ ${USE_NPTL} = "1" ]] ; then # Should we build with nptl only? [[ ${USE_NPTLONLY} = "1" ]] && ALLOWED_USE="${ALLOWED_USE} nptlonly" fi -[[ -z ${myOS_HEADERS} ]] && myOS_HEADERS="virtual/os-headers" +[[ -z ${myOS_HEADERS} ]] && myOS_HEADERS="$(portageq expand_virtual / virtual/os-headers)" einfo "Using baselayout : ${myBASELAYOUT}" einfo "Using portage : ${myPORTAGE}" |