scripts/bootstrap.sh: Allow CONFIG_PROTECT
authorMatt Turner <mattst88@gentoo.org>
Mon, 30 Mar 2020 01:15:25 +0000 (18:15 -0700)
committerMatt Turner <mattst88@gentoo.org>
Mon, 30 Mar 2020 01:37:50 +0000 (18:37 -0700)
With a CONFIG_PROTECT="-*" setting, glibc will overwrite the system's
/etc/locale.gen file in src_install() with its default-empty one. In
pkg_postinst() it reads the empty /etc/locale.gen it just installed, and
as a result generates all locales.

So, allow CONFIG_PROTECT to be passed through unmolested so long as it
starts with "-*". This allows locales to be selectively enabled when
bootstrap.sh is run with CONFIG_PROTECT="-* /etc/locale.gen".

Signed-off-by: Matt Turner <mattst88@gentoo.org>
scripts/bootstrap.sh

index aa31fb15e8bdcbccbb8af0dd241c179dc14d559d..c06e25dba133884eaa9fe6b043eb90f9959fd411 100755 (executable)
@@ -306,7 +306,7 @@ echo ---------------------------------------------------------------------------
 [[ -x /usr/bin/gcc-config  ]] && GCC_CONFIG="/usr/bin/gcc-config"
 
 # Allow portage to overwrite stuff
-export CONFIG_PROTECT="-*"
+[[ $CONFIG_PROTECT != "-*"* ]] && export CONFIG_PROTECT="-*"
 
 # disable collision-protection
 export FEATURES="${FEATURES} -collision-protect"