summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-14 12:24:30 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-14 12:36:08 +0000
commit77a4497cf4581bf4d43c071f86550bd0a625f39f (patch)
tree68a87d3190f46f622d94f032143e38f2e3220280 /meta
parent34571f4c101cb977a038e1b3fc36bd49f08b9282 (diff)
downloadpoky-77a4497cf4581bf4d43c071f86550bd0a625f39f.tar.gz
kconfig-frontends: Depend on pkgconfig-native
We were seeing errors like: | autoreconf: running: /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly/build/build/tmp/sysroots/x86_64-linux/usr/bin/autoconf --force | configure.ac:27: error: possibly undefined macro: AS_IF | If this token and others are legitimate, please use m4_pattern_allow. | See the Autoconf documentation. | configure.ac:100: error: possibly undefined macro: AC_MSG_ERROR | autoreconf: /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly/build/build/tmp/sysroots/x86_64-linux/usr/bin/autoconf failed with exit status: 1 | ERROR: autoreconf execution failed. which turns out to mean the pkgconfig macros were unavailable (thanks for clear error messages autoconf). This patch adds in the missing dependency. (From OE-Core rev: 26431ffda8886412147ff347c000a0ecc2671db5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb
index d1fdc0e297..3748c8e369 100644
--- a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb
+++ b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb
@@ -10,7 +10,7 @@ HOMEPAGE = "http://ymorin.is-a-geek.org/projects/kconfig-frontends"
10LICENSE = "GPL-2.0" 10LICENSE = "GPL-2.0"
11LIC_FILES_CHKSUM = "file://COPYING;md5=9b8cf60ff39767ff04b671fca8302408" 11LIC_FILES_CHKSUM = "file://COPYING;md5=9b8cf60ff39767ff04b671fca8302408"
12SECTION = "devel" 12SECTION = "devel"
13DEPENDS += "ncurses flex bison gperf" 13DEPENDS += "ncurses flex bison gperf pkgconfig-native"
14PR = "r0" 14PR = "r0"
15PV = "3.6.0" 15PV = "3.6.0"
16SPIN = "0" 16SPIN = "0"