summaryrefslogtreecommitdiff
path: root/Jamfile.jam
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-17 07:50:16 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-17 07:50:16 +0000
commit754e438db8d7c935417df1d847d0f1494daed8f1 (patch)
treefd5da27e17413a9b2bc930659a60bb0bb3de8aba /Jamfile.jam
parent806ce728627ef0da96f4e603d49931619b45ce58 (diff)
tests: Added newline stripping from gcc -dumpversion output
git-svn-id: http://pugixml.googlecode.com/svn/trunk@430 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamfile.jam')
-rw-r--r--Jamfile.jam2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jamfile.jam b/Jamfile.jam
index 31e7aa6..1ebdba3 100644
--- a/Jamfile.jam
+++ b/Jamfile.jam
@@ -15,7 +15,7 @@ if ( ! $(toolset) )
{
if ( $(UNIX) )
{
- local GCCVERSION = [ Shell "gcc -dumpversion" ] ;
+ local GCCVERSION = [ Subst [ Shell "gcc -dumpversion" ] : $(NEWLINE) ] ;
toolset = "gcc"$(GCCVERSION) ;
}
else