From: Holger Freyther Date: Mon, 11 Sep 2006 13:46:49 +0000 (+0000) Subject: classes/icecc.bbclass: Use split so we get the real version instead of a single chara... X-Git-Tag: Release-2010-05/1~9453^2~841 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99392e1c17c790e5a76e2e0d2094721b0a080715;p=openembedded.git classes/icecc.bbclass: Use split so we get the real version instead of a single charachter [2] will get us the 2nd charachter of the first line. This is not what we wanted. We want the version number which is the '2nd' column of the first line. --- diff --git a/classes/icecc.bbclass b/classes/icecc.bbclass index 66a5bf79e3..2f34d408d2 100644 --- a/classes/icecc.bbclass +++ b/classes/icecc.bbclass @@ -10,7 +10,7 @@ def icc_determine_gcc_version(gcc): 'i686-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5363)' """ - return os.popen("%s --version" % gcc ).readline()[2] + return os.popen("%s --version" % gcc ).readline().split()[2] def create_env(bb,d): """