diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-14 18:30:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-14 22:54:50 +0100 |
commit | dc2192cabc007241dd805503a1015529b5e33c07 (patch) | |
tree | 471e24555e0e1e1f6d0a2c16ad93557309f04c33 /meta/recipes-core | |
parent | e024d40cd5e71699092507042feb03e28b472d8f (diff) | |
download | poky-dc2192cabc007241dd805503a1015529b5e33c07.tar.gz |
external-poky-toolchain: This is broken and confusing now, remove it
This avoids a number of bogus preferred providers warnings too.
(From OE-Core rev: 823a2f96df84547216a26697838977a162f838c5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/external-poky-toolchain.bb | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/meta/recipes-core/meta/external-poky-toolchain.bb b/meta/recipes-core/meta/external-poky-toolchain.bb deleted file mode 100644 index 55077461e4..0000000000 --- a/meta/recipes-core/meta/external-poky-toolchain.bb +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | PROVIDES = "\ | ||
2 | linux-libc-headers \ | ||
3 | virtual/${TARGET_PREFIX}gcc \ | ||
4 | virtual/${TARGET_PREFIX}gcc-intermediate \ | ||
5 | virtual/${TARGET_PREFIX}gcc-initial \ | ||
6 | virtual/${TARGET_PREFIX}binutils \ | ||
7 | virtual/${TARGET_PREFIX}libc-for-gcc \ | ||
8 | virtual/libc \ | ||
9 | virtual/libintl \ | ||
10 | virtual/libiconv \ | ||
11 | virtual/linux-libc-headers " | ||
12 | RPROVIDES = "glibc-utils libsegfault glibc-thread-db libgcc-dev libstdc++-dev libstdc++" | ||
13 | PACKAGES_DYNAMIC = "glibc-gconv-*" | ||
14 | INHIBIT_DEFAULT_DEPS = "1" | ||
15 | PR = "r1" | ||
16 | |||
17 | # License applies to this recipe code, not the toolchain itself | ||
18 | LICENSE = "MIT" | ||
19 | |||
20 | do_install() { | ||
21 | if [ ! -e ${prefix}/environment-setup ]; then | ||
22 | echo "The Poky toolchain could not be found in ${prefix}!" | ||
23 | exit 1 | ||
24 | fi | ||
25 | |||
26 | install -d ${DEPLOY_DIR}/ipk/ | ||
27 | install -d ${STAGING_DIR}/pkgdata/ | ||
28 | install -d ${STAGING_DIR_TARGET}/shlibs/ | ||
29 | install -d ${STAGING_DIR_TARGET}/${base_libdir}/ | ||
30 | install -d ${STAGING_DIR_TARGET}/${libdir}/ | ||
31 | install -d ${STAGING_DIR_TARGET}/${includedir}/ | ||
32 | |||
33 | cp -ar ${prefix}/ipk/* ${DEPLOY_DIR}/ipk/ | ||
34 | cp -ar ${prefix}/pkgdata/* ${STAGING_DIR}/pkgdata/ | ||
35 | cp -ar ${prefix}/${TARGET_SYS}/shlibs/* ${STAGING_DIR_TARGET}/shlibs/ | ||
36 | cp -ar ${prefix}/${TARGET_SYS}/lib/* ${STAGING_DIR_TARGET}/${base_libdir}/ | ||
37 | cp -ar ${prefix}/${TARGET_SYS}/usr/include/* ${STAGING_DIR_TARGET}/${includedir}/ | ||
38 | cp -ar ${prefix}/${TARGET_SYS}/usr/lib/* ${STAGING_DIR_TARGET}/${libdir}/ | ||
39 | } | ||
40 | |||