diff options
author | Ross Burton <ross.burton@intel.com> | 2019-04-08 11:57:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-10 13:46:17 +0100 |
commit | 4d1000a303ac6417fef0a7ea91f00ce14673127a (patch) | |
tree | 7c7f5153363fc39af60727cef8c45535a4536981 /meta/classes/insane.bbclass | |
parent | 8233d9e717016a3025ea4570bef89436e8311b92 (diff) | |
download | poky-4d1000a303ac6417fef0a7ea91f00ce14673127a.tar.gz |
insane: fix gettext dependency warning
This message was using %s markers but nothing was being passed in.
(From OE-Core rev: d204398d40cbbea5a6b58a36fc289d569f2eb304)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index b7893a4c35..4267cbd0f6 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -1135,7 +1135,7 @@ Rerun configure task after fixing this.""" | |||
1135 | for config in configs: | 1135 | for config in configs: |
1136 | gnu = "grep \"^[[:space:]]*AM_GNU_GETTEXT\" %s >/dev/null" % config | 1136 | gnu = "grep \"^[[:space:]]*AM_GNU_GETTEXT\" %s >/dev/null" % config |
1137 | if subprocess.call(gnu, shell=True) == 0: | 1137 | if subprocess.call(gnu, shell=True) == 0: |
1138 | error_msg = "%s required but not in DEPENDS for file %s. Missing inherit gettext?" | 1138 | error_msg = "AM_GNU_GETTEXT used but no inherit gettext" |
1139 | package_qa_handle_error("configure-gettext", error_msg, d) | 1139 | package_qa_handle_error("configure-gettext", error_msg, d) |
1140 | 1140 | ||
1141 | ########################################################################### | 1141 | ########################################################################### |