diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:46:19 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:46:19 +0000 |
commit | 806ce728627ef0da96f4e603d49931619b45ce58 (patch) | |
tree | db4529f5b06793a6abfde7b2e94078610f80e6ab | |
parent | 0826f0565b87f50600298b23b850b3a9a8017ba2 (diff) |
tests: Minor fix for jam scripts
git-svn-id: http://pugixml.googlecode.com/svn/trunk@429 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | Jamfile.jam | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jamfile.jam b/Jamfile.jam index 2a56740..31e7aa6 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -15,7 +15,8 @@ if ( ! $(toolset) ) {
if ( $(UNIX) )
{
- toolset = "gcc" [ Shell "gcc -dumpversion" ] ;
+ local GCCVERSION = [ Shell "gcc -dumpversion" ] ;
+ toolset = "gcc"$(GCCVERSION) ;
}
else
{
|