summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2020-10-13 17:59:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-07 22:26:38 +0000
commite24ac6605aeaae42475d3f753dc9452093af5a14 (patch)
tree8432096027e929f982d96fe051a3280aa5acdd81 /meta/classes/autotools.bbclass
parent628e0263e3bb768ea771d0e0260fdb18e16c871e (diff)
downloadopenembedded-core-contrib-e24ac6605aeaae42475d3f753dc9452093af5a14.tar.gz
autotools: remove intltoolize logic
autoconf 2.70 now invokes intltoolize, so there's no need to do it again in this class. Signed-off-by: Ross Burton <ross.burton@arm.com>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass8
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() {
PRUNE_M4="$PRUNE_M4 gettext.m4 iconv.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4"
fi
mkdir -p m4
- if grep -q "^[[:space:]]*[AI][CT]_PROG_INTLTOOL" $CONFIGURE_AC; then
- if ! echo "${DEPENDS}" | grep -q intltool-native; then
- bbwarn "Missing DEPENDS on intltool-native"
- fi
- PRUNE_M4="$PRUNE_M4 intltool.m4"
- bbnote Executing intltoolize --copy --force --automake
- intltoolize --copy --force --automake
- fi
for i in $PRUNE_M4; do
find ${S} -ignore_readdir_race -name $i -delete