diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-11 01:08:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-19 22:45:54 +0000 |
commit | e4346299da911dd7c43c2e221b941e5cda502d1e (patch) | |
tree | 8fe677e7a59b62b3c856591f17fa0487af96b484 /meta/recipes-devtools/intltool | |
parent | 427ec49e34dee36157e706bb2bbb93c5f15e2d6a (diff) | |
download | openembedded-core-e4346299da911dd7c43c2e221b941e5cda502d1e.tar.gz openembedded-core-e4346299da911dd7c43c2e221b941e5cda502d1e.tar.bz2 openembedded-core-e4346299da911dd7c43c2e221b941e5cda502d1e.zip |
intltool: Allow nativesdk variant to build
This tool has been missing from the SDKs, the recipe specific sysroot
work highlighted the issues.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/intltool')
-rw-r--r-- | meta/recipes-devtools/intltool/intltool_0.51.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/intltool/intltool_0.51.0.bb b/meta/recipes-devtools/intltool/intltool_0.51.0.bb index a7ea3b727d..551bdf0619 100644 --- a/meta/recipes-devtools/intltool/intltool_0.51.0.bb +++ b/meta/recipes-devtools/intltool/intltool_0.51.0.bb @@ -22,6 +22,7 @@ inherit autotools pkgconfig perlnative export PERL = "${bindir}/env perl" PERL_class-native = "/usr/bin/env nativeperl" +PERL_class-nativesdk = "/usr/bin/env perl" # gettext is assumed to exist on the host RDEPENDS_${PN}_class-native = "libxml-parser-perl-native" @@ -33,4 +34,4 @@ FILES_${PN} += "${datadir}/aclocal" INSANE_SKIP_${PN} += "dev-deps" -BBCLASSEXTEND = "native" +BBCLASSEXTEND = "native nativesdk" |