diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-27 09:20:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-04 17:40:38 +0100 |
commit | d83e034b4af747769c2ece26072c44f82bfbc11f (patch) | |
tree | b46a75b695397ffb477ee8e68a243f56af1881d0 | |
parent | fb8aaf6f8e180cb3fe4c2d02c041cb02be88ab46 (diff) | |
download | poky-d83e034b4af747769c2ece26072c44f82bfbc11f.tar.gz |
lsbinitiscripts: Add glib-2.0 to DEPENDS list
ppp-watch requires it.
x86_64-poky-linux-gcc -m64 --sysroot=/intel/poky2/builds/fetch/tmp/sysroots/qemux86-64 -O2 -pipe -g -feliminate-unused-debug-types -Wall -D_GNU_SOURCE `pkg-config glib-2.0 --cflags` -c ppp-watch.c -o ppp-watch.o
Package glib-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `glib-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'glib-2.0' found
ppp-watch.c:78:18: fatal error: glib.h: No such file or directory
compilation terminated.
make[1]: *** [ppp-watch.o] Error 1
make[1]: Leaving directory `/intel/poky2/builds/fetch/tmp/work/x86_64-poky-linux/lsbinitscripts-9.03-r0/initscripts-9.03/src'
(From OE-Core rev: 488610f4a5b7591a989ff1a6137f276a85fd7a85)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/lsb/lsbinitscripts_9.03.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.03.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.03.bb index dd92a92892..d07c4e2d52 100644 --- a/meta/recipes-extended/lsb/lsbinitscripts_9.03.bb +++ b/meta/recipes-extended/lsb/lsbinitscripts_9.03.bb | |||
@@ -1,8 +1,8 @@ | |||
1 | DESCRIPTION = "SysV init scripts which only is used in an LSB image" | 1 | DESCRIPTION = "SysV init scripts which only is used in an LSB image" |
2 | SECTION = "base" | 2 | SECTION = "base" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | DEPENDS = "popt" | 4 | DEPENDS = "popt glib-2.0" |
5 | PR = "r0" | 5 | PR = "r1" |
6 | 6 | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6" |
8 | 8 | ||