insane.bbclass: fix some more ',' vs '%' issues
authorKoen Kooi <koen@openembedded.org>
Mon, 19 Feb 2007 13:00:07 +0000 (13:00 +0000)
committerKoen Kooi <koen@openembedded.org>
Mon, 19 Feb 2007 13:00:07 +0000 (13:00 +0000)
classes/insane.bbclass

index f4e426b..0b2f8ee 100644 (file)
@@ -377,5 +377,5 @@ python do_qa_configure() {
     for root, dirs, files in os.walk(bb.data.getVar('WORKDIR', d, True)):
         if "config.log" in files:
             if os.system("grep 'CROSS COMPILE Badness:' %s > /dev/null" % (os.path.join(root,"config.log"))) == 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. Path was '%s'" % root)
 }