diff options
| author | Holger Freyther <zecke@selfish.org> | 2006-09-11 13:46:49 +0000 |
|---|---|---|
| committer | Holger Freyther <zecke@selfish.org> | 2006-09-11 13:46:49 +0000 |
| commit | 99392e1c17c790e5a76e2e0d2094721b0a080715 (patch) | |
| tree | 4f60bc0ae04d966220e1775200a89af86a5a7f34 | |
| parent | 2f8b6f197101850d3c53b260b09b4e18d1fdcb64 (diff) | |
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.
| -rw-r--r-- | classes/icecc.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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): """ |
