From: Nathan Rossi Date: Sun, 10 Sep 2017 12:59:08 +0000 (+1000) Subject: gawk: Enable native building X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~19956 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbc396dd10488990c98bb6fd94c7d10a736d57c1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git gawk: Enable native building Also update the ASSUME_PROVIDED in bitbake.conf to contain gawk-native as the dependency is passed in via HOSTTOOLS for native builds. This allows for recipes to depend on gawk-native, and have the dependency met if not already provided by the host tools. Signed-off-by: Nathan Rossi Signed-off-by: Ross Burton --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 8fb596e6b9d..4ff1e9608e7 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -176,6 +176,7 @@ ASSUME_PROVIDED = "\ chrpath-native \ file-native \ findutils-native \ + gawk-native \ git-native \ grep-native \ diffstat-native \ diff --git a/meta/recipes-extended/gawk/gawk_4.1.4.bb b/meta/recipes-extended/gawk/gawk_4.1.4.bb index dda38ef1bb2..04451f7ff8e 100644 --- a/meta/recipes-extended/gawk/gawk_4.1.4.bb +++ b/meta/recipes-extended/gawk/gawk_4.1.4.bb @@ -46,4 +46,4 @@ do_install_ptest() { done } -BBCLASSEXTEND = "nativesdk" +BBCLASSEXTEND = "native nativesdk"