]> code.ossystems Code Review - openembedded-core.git/commitdiff
autotools: remove intltoolize logic
authorRoss Burton <ross.burton@arm.com>
Tue, 13 Oct 2020 16:59:55 +0000 (17:59 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 7 Feb 2021 22:26:38 +0000 (22:26 +0000)
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>
meta/classes/autotools.bbclass

index 9a328c22800b04e5acfe1572d27fa0dfbf53ff9e..b334a8186ad551f38b68f336d2025b1cee8a1b48 100644 (file)
@@ -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