From: Koen Kooi Date: Mon, 19 Feb 2007 13:00:07 +0000 (+0000) Subject: insane.bbclass: fix some more ',' vs '%' issues X-Git-Tag: Release-2010-05/1~9226 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3b13afcbb22a3c1200e79e8da2384871a872679;p=openembedded.git insane.bbclass: fix some more ',' vs '%' issues --- diff --git a/classes/insane.bbclass b/classes/insane.bbclass index f4e426b17e..0b2f8ee06c 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -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) }