Merge "Fix building on gentoo hosts"

This commit is contained in:
Jenkins 2016-02-27 14:44:46 +00:00 committed by Gerrit Code Review
commit 103b7dea6d
2 changed files with 8 additions and 4 deletions

View File

@ -58,9 +58,13 @@ function unfix_shm {
function install_gentoo_packages {
RUN_ONCE_SHM='1'
fix_shm
emerge $@
unfix_shm
if ! grep -q /dev/shm /proc/mounts; then
fix_shm
emerge $@
unfix_shm
else
emerge $@
fi
}
TEMP="$(getopt -o huem: -n ${SCRIPTNAME} -- ${@})"

View File

@ -1,2 +1,2 @@
export DISTRO_NAME=gentoo
export GENTOO_PROFILE=$(eselect profile show | tail -n 1)
export GENTOO_PROFILE=${GENTOO_PROFILE:-'default/linux/amd64/13.0'}