diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-20 22:23:15 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-22 18:30:06 +0100 |
commit | 717e940d2c2beccfda31dda16a2d0d6d9a495042 (patch) | |
tree | 0b6c07a8c352110fca11edaa4b06590f8afdea21 /meta/recipes-devtools | |
parent | e7e8fe11c34bf05179f3bbaa2fb1af7b7125696a (diff) | |
download | openembedded-core-717e940d2c2beccfda31dda16a2d0d6d9a495042.tar.gz openembedded-core-717e940d2c2beccfda31dda16a2d0d6d9a495042.tar.bz2 openembedded-core-717e940d2c2beccfda31dda16a2d0d6d9a495042.zip |
gcc-cross-canadian-4.8: Allow elfutils to be a configurable dependency
Some SDK platforms have elfutils support, some do not, therefore allow
this to be configured.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-canadian_4.8.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.8.bb b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.8.bb index 278a5290f2..49ba75f88c 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.8.bb +++ b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.8.bb @@ -5,8 +5,9 @@ require gcc-cross-canadian.inc require gcc-configure-sdk.inc require gcc-package-sdk.inc -DEPENDS += "nativesdk-gmp nativesdk-mpfr nativesdk-libmpc nativesdk-elfutils" -RDEPENDS_${PN} += "nativesdk-mpfr nativesdk-libmpc nativesdk-elfutils" +ELFUTILS = "nativesdk-elfutils" +DEPENDS += "nativesdk-gmp nativesdk-mpfr nativesdk-libmpc ${ELFUTILS}" +RDEPENDS_${PN} += "nativesdk-mpfr nativesdk-libmpc ${ELFUTILS}" SYSTEMHEADERS = "/usr/include" SYSTEMLIBS = "${target_base_libdir}/" |