media-tv/kodi: run the codegenerator when USE=java #558798

Since we don't include the precompiled generated files when USE=java,
make sure we explicitly run the bootstrap step since the build doesn't
handle it for us.
This commit is contained in:
Mike Frysinger
2015-09-18 22:30:08 -04:00
parent ce0e7417b4
commit 89417912ce
2 changed files with 8 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ EAPI="5"
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="sqlite"
inherit eutils linux-info python-single-r1 multiprocessing autotools
inherit eutils linux-info python-single-r1 multiprocessing autotools toolchain-funcs
CODENAME="Isengard"
case ${PV} in
@@ -172,7 +172,9 @@ src_prepare() {
multijob_finish
elibtoolize
[[ ${PV} == "9999" ]] && emake -f codegenerator.mk
if [[ ${PV} == "9999" ]] || use java ; then #558798
tc-env_build emake -f codegenerator.mk
fi
# Disable internal func checks as our USE/DEPEND
# stuff handles this just fine already #408395

View File

@@ -9,7 +9,7 @@ EAPI="5"
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="sqlite"
inherit eutils linux-info python-single-r1 multiprocessing autotools
inherit eutils linux-info python-single-r1 multiprocessing autotools toolchain-funcs
CODENAME="Isengard"
case ${PV} in
@@ -172,7 +172,9 @@ src_prepare() {
multijob_finish
elibtoolize
[[ ${PV} == "9999" ]] && emake -f codegenerator.mk
if [[ ${PV} == "9999" ]] || use java ; then #558798
tc-env_build emake -f codegenerator.mk
fi
# Disable internal func checks as our USE/DEPEND
# stuff handles this just fine already #408395