0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00

cleaner variant dir directories

This commit is contained in:
Eliot Horowitz 2012-01-21 19:50:45 -05:00
parent e885029b8f
commit ff0157a562

View File

@ -110,7 +110,9 @@ def get_variant_dir():
if o["nargs"] == 0:
a.append( name )
else:
a.append( name + "-" + get_option( name ) )
x = get_option( name )
x = re.sub( "[,\\\\/]" , "_" , x )
a.append( name + "_" + x )
s = "#build/${PYSYSPLATFORM}/"