liblangtag: make configure find native libtool

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
This commit is contained in:
Andreas Müller
2016-08-25 16:50:51 +02:00
parent b92e44ebdb
commit 0e7ecadf17
3 changed files with 7 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ EXTRA_OECONF += " \
do_configure() {
olddir=`pwd`
cd ${S}
aclocal --system-acdir=${B}/aclocal-copy/ -I ${S}/m4
aclocal --system-acdir=${WORKDIR}/aclocal-copy/ -I ${S}/m4
gnu-configize
autoconf
cd $olddir

View File

@@ -166,7 +166,7 @@ PACKAGECONFIG[postgresql] = "--enable-postgresql-sdbc --with-system-postgresql,
do_configure() {
olddir=`pwd`
cd ${S}
aclocal --system-acdir=${B}/aclocal-copy/ -I ${S}/m4
aclocal --system-acdir=${WORKDIR}/aclocal-copy/ -I ${S}/m4
gnu-configize
autoconf
cd $olddir

View File

@@ -25,4 +25,9 @@ EXTRA_OECONF += "--disable-introspection"
# needed for m4 macros.
DEPENDS += "gobject-introspection"
do_configure_prepend() {
# align to native libtool
sed -i 's:libtool :${HOST_SYS}-libtool :g' ${S}/configure.ac
}
BBCLASSEXTEND = "native"