]> code.ossystems Code Review - openembedded-core.git/commitdiff
insane.bbclass: Fix multiline string
authorJoshua Lock <josh@linux.intel.com>
Wed, 6 Jan 2010 10:50:06 +0000 (10:50 +0000)
committerJoshua Lock <josh@linux.intel.com>
Wed, 6 Jan 2010 13:18:18 +0000 (13:18 +0000)
Earlier commit had created a multiline string without
updating the python string quotation (""" for multiline).

Signed-off-by: Joshua Lock <josh@linux.intel.com>
meta/classes/insane.bbclass

index aa0d1aa180e315551026a689abd41d0b19edf0bd..5b4df19bcd200b93ec56d312bcde318cfe5d6b30 100644 (file)
@@ -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)
 }