mirror of
https://git.yoctoproject.org/poky
synced 2026-04-13 05:02:24 +02:00
insane.bbclass: Fix multiline string
Earlier commit had created a multiline string without
updating the python string quotation (""" for multiline).
Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
@@ -510,6 +510,6 @@ Rerun configure task after fixing this. The path was '%s'""" % root)
|
||||
for config in configs:
|
||||
gnu = "grep \"^[[:space:]]*AM_GNU_GETTEXT\" %s >/dev/null" % config
|
||||
if os.system(gnu) == 0:
|
||||
bb.fatal("Gettext required but not in DEPENDS for file %s.
|
||||
Missing inherit gettext?" % config)
|
||||
bb.fatal("""Gettext required but not in DEPENDS for file %s.
|
||||
Missing inherit gettext?""" % config)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user