diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-14 07:55:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-15 15:12:45 +0100 |
commit | b42744fac32ed3592462ef014327dae9c88072b2 (patch) | |
tree | c195ecfdf7ac432c9026e3ad99bc29de8a6bc001 /meta | |
parent | 43c84ea496507ccf41d3404bda615d086c48fad3 (diff) | |
download | poky-b42744fac32ed3592462ef014327dae9c88072b2.tar.gz |
gcc-target: ensure target packages have the correct virtual package names
Resolves this error during do_rootfs:
| * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-core-standalone-sdk-target:
| * eglibc (>= 2.15) *
| * opkg_install_cmd: Cannot install package task-core-standalone-sdk-target.
NOTE: package core-image-sato-sdk-1.0-r0: task do_rootfs: Failed
(From OE-Core rev: 86e3b90d1963fa6982869e005d7858222a8527d5)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.7.inc | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-package-runtime.inc | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.7.inc b/meta/recipes-devtools/gcc/gcc-4.7.inc index 0321776ad1..973c211fdb 100644 --- a/meta/recipes-devtools/gcc/gcc-4.7.inc +++ b/meta/recipes-devtools/gcc/gcc-4.7.inc | |||
@@ -1,6 +1,6 @@ | |||
1 | require gcc-common.inc | 1 | require gcc-common.inc |
2 | 2 | ||
3 | PR = "r1" | 3 | PR = "r2" |
4 | 4 | ||
5 | # Third digit in PV should be incremented after a minor release | 5 | # Third digit in PV should be incremented after a minor release |
6 | # happens from this branch on gcc e.g. currently its 4.7.0 | 6 | # happens from this branch on gcc e.g. currently its 4.7.0 |
diff --git a/meta/recipes-devtools/gcc/gcc-package-runtime.inc b/meta/recipes-devtools/gcc/gcc-package-runtime.inc index feb8735e05..e0cb51b062 100644 --- a/meta/recipes-devtools/gcc/gcc-package-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-package-runtime.inc | |||
@@ -61,3 +61,7 @@ FILES_libmudflap-dev = "\ | |||
61 | ${libdir}/libmudflap*.a \ | 61 | ${libdir}/libmudflap*.a \ |
62 | ${libdir}/libmudflap*.la" | 62 | ${libdir}/libmudflap*.la" |
63 | 63 | ||
64 | do_package_write_ipk[depends] += "virtual/${MLPREFIX}libc:do_package" | ||
65 | do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_package" | ||
66 | do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_package" | ||
67 | |||