diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-02-12 10:52:05 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-15 13:28:54 +0000 |
commit | 15f78b0ff35d743d44fd80aabb8c2f0ec7aa4e73 (patch) | |
tree | 533fc58799ba390fb9244e41dea8e62d8c177d61 /meta/recipes-devtools/icecc-create-env | |
parent | 971a3c0e2ace38db28f9f07c1f884abb7d6927a9 (diff) | |
download | poky-15f78b0ff35d743d44fd80aabb8c2f0ec7aa4e73.tar.gz |
icecc-create-env: Add support for nativesdk
icecc-create-env can now be built as a nativesdk recipe, allowing the
script to be included as part of an SDK
(From OE-Core rev: fa7929ed70ed39a202bd2dc935d460dd57e38ffd)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/icecc-create-env')
-rw-r--r-- | meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb (renamed from meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb b/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb index f8f4aef392..053945ebbc 100644 --- a/meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb +++ b/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb | |||
@@ -12,8 +12,6 @@ PR = "r2" | |||
12 | DEPENDS = "" | 12 | DEPENDS = "" |
13 | INHIBIT_DEFAULT_DEPS = "1" | 13 | INHIBIT_DEFAULT_DEPS = "1" |
14 | 14 | ||
15 | inherit native | ||
16 | |||
17 | # This is needed, because otherwise there is dependency loop from quilt-native | 15 | # This is needed, because otherwise there is dependency loop from quilt-native |
18 | # Dependency loop #1 found: | 16 | # Dependency loop #1 found: |
19 | # Task 10907 (meta/recipes-devtools/quilt/quilt-native_0.60.bb, do_install) (dependent Tasks ['quilt-native, do_compile']) | 17 | # Task 10907 (meta/recipes-devtools/quilt/quilt-native_0.60.bb, do_install) (dependent Tasks ['quilt-native, do_compile']) |
@@ -34,3 +32,5 @@ do_install() { | |||
34 | install -d ${D}/${bindir} | 32 | install -d ${D}/${bindir} |
35 | install -m 0755 ${WORKDIR}/icecc-create-env ${D}/${bindir} | 33 | install -m 0755 ${WORKDIR}/icecc-create-env ${D}/${bindir} |
36 | } | 34 | } |
35 | |||
36 | BBCLASSEXTEND = "native nativesdk" | ||