diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-02 06:51:41 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-02 06:51:41 +0000 |
commit | 7703d96dcb33fed7604b5e44df730430fac78f70 (patch) | |
tree | 9449cab9b2f3b5ca73b2623f82296bd1ef28865b /Jamfile.jam | |
parent | 5a6b19b27832fec1464669cad4b6bbd5a70a1b00 (diff) |
tests: Use colon instead of semicolon as define set separator (sh compatibility)
git-svn-id: http://pugixml.googlecode.com/svn/trunk@496 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamfile.jam')
-rw-r--r-- | Jamfile.jam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jamfile.jam b/Jamfile.jam index 28c7f04..70cb0d6 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -56,7 +56,7 @@ DEPCACHE.standard = $(BUILD)/.depcache ; include "Jamrules.jam" ;
# split define sets into list
-local DEFINESETS = [ Split $(defines) : ';' ] ;
+local DEFINESETS = [ Split $(defines) : ':' ] ;
# split configurations into list
local CONFIGURATIONS = [ Split $(configuration) : ',' ] ;
|