mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-12 17:20:13 +00:00
kodi: User external crossguid
Prune our .pc directory when looking for configure.ac files Tighten the search regexp to look for just .ac or .in configure files Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
@@ -18,6 +18,7 @@ DEPENDS = " \
|
|||||||
avahi \
|
avahi \
|
||||||
boost \
|
boost \
|
||||||
bzip2 \
|
bzip2 \
|
||||||
|
crossguid \
|
||||||
curl \
|
curl \
|
||||||
dcadec \
|
dcadec \
|
||||||
enca \
|
enca \
|
||||||
@@ -150,13 +151,12 @@ def enable_glew(bb, d):
|
|||||||
do_configure() {
|
do_configure() {
|
||||||
tar xf ${WORKDIR}/${BPN}-${ADDONSPV}-generated-addons.tar.xz -C ${S}/
|
tar xf ${WORKDIR}/${BPN}-${ADDONSPV}-generated-addons.tar.xz -C ${S}/
|
||||||
|
|
||||||
( for i in $(find ${S} -name "configure.*" ) ; do
|
( for i in $(find ${S} -name configure.ac -or -name configure.in|grep -v ".pc") ; do
|
||||||
cd $(dirname $i) && gnu-configize --force || true
|
cd $(dirname $i) && gnu-configize --force || true
|
||||||
done )
|
done )
|
||||||
( for f in ${S}/xbmc/interfaces/python/generated/*.cpp; do
|
( for f in ${S}/xbmc/interfaces/python/generated/*.cpp; do
|
||||||
touch `echo $f|sed -e 's/.cpp$/.xml/g'`
|
touch `echo $f|sed -e 's/.cpp$/.xml/g'`
|
||||||
done )
|
done )
|
||||||
make -C tools/depends/target/crossguid PREFIX=${STAGING_DIR_HOST}${prefix}
|
|
||||||
|
|
||||||
BOOTSTRAP_STANDALONE=1 make -f bootstrap.mk JSON_BUILDER="${STAGING_BINDIR_NATIVE}/JsonSchemaBuilder"
|
BOOTSTRAP_STANDALONE=1 make -f bootstrap.mk JSON_BUILDER="${STAGING_BINDIR_NATIVE}/JsonSchemaBuilder"
|
||||||
BOOTSTRAP_STANDALONE=1 make JAVA=/bin/true -f codegenerator.mk JSON_BUILDER="${STAGING_BINDIR_NATIVE}/JsonSchemaBuilder"
|
BOOTSTRAP_STANDALONE=1 make JAVA=/bin/true -f codegenerator.mk JSON_BUILDER="${STAGING_BINDIR_NATIVE}/JsonSchemaBuilder"
|
||||||
|
|||||||
Reference in New Issue
Block a user