mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
8233d9e717
commit
4d1000a303
@@ -1135,7 +1135,7 @@ Rerun configure task after fixing this."""
|
||||
for config in configs:
|
||||
gnu = "grep \"^[[:space:]]*AM_GNU_GETTEXT\" %s >/dev/null" % config
|
||||
if subprocess.call(gnu, shell=True) == 0:
|
||||
error_msg = "%s required but not in DEPENDS for file %s. Missing inherit gettext?"
|
||||
error_msg = "AM_GNU_GETTEXT used but no inherit gettext"
|
||||
package_qa_handle_error("configure-gettext", error_msg, d)
|
||||
|
||||
###########################################################################
|
||||
|
||||
Reference in New Issue
Block a user