diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-11 10:44:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-11 16:08:48 +0000 |
commit | 30a9f0fcf608815cc920de4aba8ec0d1cf467b07 (patch) | |
tree | 1c4488159032f2cf5835d71c9ebd21e4899451d2 | |
parent | e777d6873ce9a8a80288ecbcfc86239e0ed0e2f9 (diff) | |
download | openembedded-core-30a9f0fcf608815cc920de4aba8ec0d1cf467b07.tar.gz openembedded-core-30a9f0fcf608815cc920de4aba8ec0d1cf467b07.tar.bz2 openembedded-core-30a9f0fcf608815cc920de4aba8ec0d1cf467b07.zip |
yasm: Set CCLD_FOR_BUILD to ensure BUILD_CC is used
Otherwise cc may be used which isn't correct.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/yasm/yasm_1.3.0.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/yasm/yasm_1.3.0.bb b/meta/recipes-devtools/yasm/yasm_1.3.0.bb index 78702ed20b..31af1e287e 100644 --- a/meta/recipes-devtools/yasm/yasm_1.3.0.bb +++ b/meta/recipes-devtools/yasm/yasm_1.3.0.bb @@ -9,6 +9,8 @@ SRC_URI = "http://www.tortall.net/projects/yasm/releases/${BP}.tar.gz" SRC_URI[md5sum] = "fc9e586751ff789b34b1f21d572d96af" SRC_URI[sha256sum] = "3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f" +export CCLD_FOR_BUILD = "${CC_FOR_BUILD}" + inherit autotools gettext BBCLASSEXTEND = "native" |