diff options
author | Ross Burton <ross.burton@arm.com> | 2020-10-13 17:59:55 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-07 22:26:42 +0000 |
commit | bea9c8b9886ac554ca9e368a45eb6547f8219cf9 (patch) | |
tree | 158ff32e480cc623698dcfa2a25fa3a2208e3c9e | |
parent | 66dab7e17b0b69b9f2db04220947c63a83b4426f (diff) | |
download | poky-bea9c8b9886ac554ca9e368a45eb6547f8219cf9.tar.gz |
autotools: remove intltoolize logic
autoconf 2.70 now invokes intltoolize, so there's no need to do it again
in this class.
(From OE-Core rev: e24ac6605aeaae42475d3f753dc9452093af5a14)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/autotools.bbclass | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 9a328c2280..b334a8186a 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -215,14 +215,6 @@ autotools_do_configure() { | |||
215 | PRUNE_M4="$PRUNE_M4 gettext.m4 iconv.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4" | 215 | PRUNE_M4="$PRUNE_M4 gettext.m4 iconv.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4" |
216 | fi | 216 | fi |
217 | mkdir -p m4 | 217 | mkdir -p m4 |
218 | if grep -q "^[[:space:]]*[AI][CT]_PROG_INTLTOOL" $CONFIGURE_AC; then | ||
219 | if ! echo "${DEPENDS}" | grep -q intltool-native; then | ||
220 | bbwarn "Missing DEPENDS on intltool-native" | ||
221 | fi | ||
222 | PRUNE_M4="$PRUNE_M4 intltool.m4" | ||
223 | bbnote Executing intltoolize --copy --force --automake | ||
224 | intltoolize --copy --force --automake | ||
225 | fi | ||
226 | 218 | ||
227 | for i in $PRUNE_M4; do | 219 | for i in $PRUNE_M4; do |
228 | find ${S} -ignore_readdir_race -name $i -delete | 220 | find ${S} -ignore_readdir_race -name $i -delete |