diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-01-06 10:50:06 +0000 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-01-06 13:18:18 +0000 |
commit | aef159c70c68bf4a4056035fb44f540a3fd3c9bc (patch) | |
tree | 307268f5bbc0a2b8feb59c71bf9bfd6f759e1a55 | |
parent | aee835ba8f30f4cb3f7319f953ddb64462304fa6 (diff) | |
download | openembedded-core-aef159c70c68bf4a4056035fb44f540a3fd3c9bc.tar.gz openembedded-core-aef159c70c68bf4a4056035fb44f540a3fd3c9bc.tar.bz2 openembedded-core-aef159c70c68bf4a4056035fb44f540a3fd3c9bc.tar.xz openembedded-core-aef159c70c68bf4a4056035fb44f540a3fd3c9bc.zip |
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>
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index aa0d1aa18..5b4df19bc 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -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) } |