From: Michael Lauer Date: Sat, 12 Jan 2008 14:18:26 +0000 (+0000) Subject: insane.bbclass: fix formatting of fatal include error X-Git-Tag: Release-2010-05/1~7948^2~3^2~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96320328ecb8f2bdaaf1949a78aa462239192ea2;p=openembedded.git insane.bbclass: fix formatting of fatal include error --- diff --git a/classes/insane.bbclass b/classes/insane.bbclass index 840ebf6eff..97cf036dd9 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -464,7 +464,6 @@ python do_qa_configure() { os.path.join(root,"config.log") if "config.log" in files: if os.system(statement) == 0: - bb.fatal("This autoconf log indicates errors, it looked at \ - host includes. Rerun configure task after fixing this. \ - Path was '%s'" % root) + bb.fatal("""This autoconf log indicates errors, it looked at host includes. +Rerun configure task after fixing this. The path was '%s'""" % root) }