summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-14 18:30:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-14 22:54:50 +0100
commitdc2192cabc007241dd805503a1015529b5e33c07 (patch)
tree471e24555e0e1e1f6d0a2c16ad93557309f04c33 /meta/recipes-core
parente024d40cd5e71699092507042feb03e28b472d8f (diff)
downloadpoky-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.bb40
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 @@
1PROVIDES = "\
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 "
12RPROVIDES = "glibc-utils libsegfault glibc-thread-db libgcc-dev libstdc++-dev libstdc++"
13PACKAGES_DYNAMIC = "glibc-gconv-*"
14INHIBIT_DEFAULT_DEPS = "1"
15PR = "r1"
16
17# License applies to this recipe code, not the toolchain itself
18LICENSE = "MIT"
19
20do_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