diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:42:34 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:42:34 +0000 |
commit | dd9de685eb1af432a88af7840ca01f052ddb0c7e (patch) | |
tree | 3237a1c6a058f13796aaf35d1bbc44ac3765e6f9 /Jamrules.jam | |
parent | 2412872c09d83916faea53f66088b98027898e6d (diff) |
tests: gcc version is now specified upon building
git-svn-id: http://pugixml.googlecode.com/svn/trunk@427 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamrules.jam')
-rw-r--r-- | Jamrules.jam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jamrules.jam b/Jamrules.jam index 8170f88..4907b7e 100644 --- a/Jamrules.jam +++ b/Jamrules.jam @@ -1,8 +1,8 @@ # Rules for Jamfile.jam -if ( $(toolset:I=^mingw) || $(toolset) = "gcc" ) +if ( $(toolset:I=^mingw) || $(toolset:I^=gcc) ) { - if ( $(toolset) = "gcc" ) + if ( $(toolset:I^=gcc) ) { GCCPATH = "" ; } |