catalyst: workaround for bootstrap_sdk on Ubuntu

workaround for bootstrap_sdk on an Ubuntu host where /dev/shm is a
symlink to /run/shm. Since we mount the hosts /dev (for losetup) this
interferes with building python 2.7. The workaround is to disable the
/dev/shm during python builds. A longer term fix would be to not mount
the hosts /dev. Thanks for marineam for suggesting the fix on IRC.
This commit is contained in:
Bassam Tabbara 2015-11-24 16:17:30 -08:00 committed by Alex Crawford
parent 6e905abd6b
commit cbb4256a80

View File

@ -78,6 +78,7 @@ export EMERGE_DEFAULT_OPTS="\$MAKEOPTS"
export PORTAGE_USERNAME=portage export PORTAGE_USERNAME=portage
export PORTAGE_GRPNAME=portage export PORTAGE_GRPNAME=portage
export GENTOO_MIRRORS='$(portageq envvar GENTOO_MIRRORS)' export GENTOO_MIRRORS='$(portageq envvar GENTOO_MIRRORS)'
export ac_cv_posix_semaphores_enabled=yes
EOF EOF
} }