summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2012-12-14 17:54:43 -0500
committerEric Milkie <milkie@10gen.com>2012-12-14 17:55:06 -0500
commit50759820a8a08410ec72b746f387aad26c04d347 (patch)
tree5c8f76f41c33d07c52222962afc1dbab6889e7cf /SConstruct
parentb21c528acf442300322f2d05a29de9d2a1a43139 (diff)
downloadmongo-50759820a8a08410ec72b746f387aad26c04d347.tar.gz
add colon to characters that are transformed when generating variant dir
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 72158823357..7e4160d4d72 100644
--- a/SConstruct
+++ b/SConstruct
@@ -117,7 +117,7 @@ def get_variant_dir():
a.append( name )
else:
x = get_option( name )
- x = re.sub( "[,\\\\/]" , "_" , x )
+ x = re.sub( "[:,\\\\/]" , "_" , x )
a.append( name + "_" + x )
s = "#build/${PYSYSPLATFORM}/"