sys-apps/baselayout: bump, add /sbin:/bin back into SDK PATH

This commit is contained in:
David Michael 2017-01-04 15:10:43 -08:00
parent 8d594df81e
commit 38a53b9be6
2 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,7 @@ CROS_WORKON_REPO="git://github.com"
if [[ "${PV}" == 9999 ]]; then if [[ "${PV}" == 9999 ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~x86" KEYWORDS="~amd64 ~arm ~arm64 ~x86"
else else
CROS_WORKON_COMMIT="1dad7cf091467bb51ce8f5bba11b9baeab1f6c0c" CROS_WORKON_COMMIT="dc8fe9b318df608ffb08959d0a1b0e8818797935"
KEYWORDS="amd64 arm arm64 x86" KEYWORDS="amd64 arm arm64 x86"
fi fi
@ -131,6 +131,11 @@ src_install() {
doenvd "env.d/99coreos_ldpath" doenvd "env.d/99coreos_ldpath"
# Add /sbin:/bin into the PATH when they aren't links into /usr.
if ! use symlink-usr; then
echo ROOTPATH=/sbin:/bin > "${D}"/etc/env.d/99coreos_bin || die
fi
# handle multilib paths. do it here because we want this behavior # handle multilib paths. do it here because we want this behavior
# regardless of the C library that you're using. we do explicitly # regardless of the C library that you're using. we do explicitly
# list paths which the native ldconfig searches, but this isn't # list paths which the native ldconfig searches, but this isn't