diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2015-11-20 14:06:54 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-12 08:42:29 +0000 |
commit | 02ef4376087015a8fb2b01f11700e591c3b1bcb4 (patch) | |
tree | 02565bb3b5a34f43f0fe12c95a6817d7f473deeb | |
parent | 3653b17aea68721e099427d6444705cd447cd67b (diff) | |
download | poky-02ef4376087015a8fb2b01f11700e591c3b1bcb4.tar.gz |
populate_sdk_ext.bbclass: Be more permissive on the name of the buildtools
We want to support different names for the buildtools tarball. The
name may not always be of the default oe-core format.
For instance, at Wind River we define the built-tools name to be:
${SDK_ARCH}-buildtools-nativesdk-standalone-${DISTRO_VERSION}
because thes standard SDK_NAME has additional information that is not
relevant to the builtools tarball.
(From OE-Core master rev: b49c6f179b06a8b97106aa4c95f2cdb3c4dc0920)
(From OE-Core rev: ed92440d19e5948aa64c95fcf30b989c5e6efdb9)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index dc052612c7..8601c78410 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -187,10 +187,7 @@ python copy_buildsystem () { | |||
187 | } | 187 | } |
188 | 188 | ||
189 | def extsdk_get_buildtools_filename(d): | 189 | def extsdk_get_buildtools_filename(d): |
190 | # This is somewhat of a hack | 190 | return '*-buildtools-nativesdk-standalone-*.sh' |
191 | localdata = bb.data.createCopy(d) | ||
192 | localdata.setVar('PN', 'buildtools-tarball') | ||
193 | return localdata.expand('${SDK_NAME}-buildtools-nativesdk-standalone-*.sh') | ||
194 | 191 | ||
195 | install_tools() { | 192 | install_tools() { |
196 | install -d ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk} | 193 | install -d ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk} |