From: Zac Medico Date: Thu, 7 Sep 2006 06:08:01 +0000 (-0000) Subject: Make sure that the package phase has the PYTHONPATH set correctly so that the xpak... X-Git-Tag: v2.1.1~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=36673e3b9bfbf6b6c2618a99ca693538bdb48d13;p=portage.git Make sure that the package phase has the PYTHONPATH set correctly so that the xpak module is accessible. svn path=/main/trunk/; revision=4421 --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index d68eee4e4..db9efbb19 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -358,6 +358,7 @@ dyn_package() { export SANDBOX_ON="0" tar cpvf - ./ | bzip2 -f > "${pkg_tmp}" || die "Failed to create tarball" cd .. + export PYTHONPATH=${PORTAGE_PYM_PATH:-/usr/lib/portage/pym} python -c "import xpak; t=xpak.tbz2('${pkg_tmp}'); t.recompose('${PORTAGE_BUILDDIR}/build-info')" if [ $? -ne 0 ]; then rm -f "${pkg_tmp}"