[oe-commits] [openembedded-core] 11/31: autotools: warn when running intltoolize if intltool isn't a dependemcy

git at git.openembedded.org git at git.openembedded.org
Fri Apr 29 06:55:20 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 7ba90d2083970cb2a04afb8fa2ee2d485fef4e4d
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Wed Apr 20 11:39:18 2016 +0100

    autotools: warn when running intltoolize if intltool isn't a dependemcy
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/autotools.bbclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 6649f5d..22880cc 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -293,6 +293,9 @@ autotools_do_configure() {
 		fi
 		mkdir -p m4
 		if grep "^[[:space:]]*[AI][CT]_PROG_INTLTOOL" $CONFIGURE_AC >/dev/null; then
+			if ! echo "${DEPENDS}" | grep -q intltool-native; then
+				bbwarn "Missing DEPENDS on intltool-native"
+			fi
 			bbnote Executing intltoolize --copy --force --automake
 			intltoolize --copy --force --automake
 		fi

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list