summaryrefslogtreecommitdiff
path: root/Jamfile.jam
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-17 07:46:19 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-17 07:46:19 +0000
commit806ce728627ef0da96f4e603d49931619b45ce58 (patch)
treedb4529f5b06793a6abfde7b2e94078610f80e6ab /Jamfile.jam
parent0826f0565b87f50600298b23b850b3a9a8017ba2 (diff)
tests: Minor fix for jam scripts
git-svn-id: http://pugixml.googlecode.com/svn/trunk@429 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamfile.jam')
-rw-r--r--Jamfile.jam3
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
{