diff options
author | Joe Slater <jslater@windriver.com> | 2017-03-09 18:01:29 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-11 16:08:49 +0000 |
commit | ad151cf2de2f1990297e7ba18fa78958b00a3dd3 (patch) | |
tree | 480e39854cda44303cd72528cba82af1fdb7c365 /meta/recipes-devtools | |
parent | d6b04e12127dd65b96ac7f4509b829510ef21071 (diff) | |
download | openembedded-core-ad151cf2de2f1990297e7ba18fa78958b00a3dd3.tar.gz openembedded-core-ad151cf2de2f1990297e7ba18fa78958b00a3dd3.tar.bz2 openembedded-core-ad151cf2de2f1990297e7ba18fa78958b00a3dd3.zip |
pkgconfig: specify --disable-indirect-deps to configure
This preserves the current behaviour because the auto
test by configure will never return yes. ./libtool is
needed by the test and it will never exist.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/pkgconfig/pkgconfig_git.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb index 422c5f3b7b..dc44992c7e 100644 --- a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb +++ b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb @@ -22,6 +22,11 @@ S = "${WORKDIR}/git" inherit autotools +# Because of a faulty test, the current auto mode always evaluates to no, +# so just continue that behaviour. +# +EXTRA_OECONF += "--disable-indirect-deps" + PACKAGECONFIG ??= "glib" PACKAGECONFIG_class-native = "" PACKAGECONFIG_class-nativesdk = "" |