diff options
author | Randall Hunt <randall.hunt@10gen.com> | 2012-09-18 19:20:42 -0400 |
---|---|---|
committer | Randall Hunt <randall.hunt@10gen.com> | 2012-09-18 19:21:14 -0400 |
commit | 9e3e96e4901ad21e411d9a781a79d26298392262 (patch) | |
tree | a8735ea1e2e515ddcad638a28a46fe1dfec06e90 /SConstruct | |
parent | 5cc8a693a48f3885df6e77f5ce0f2abf0789d499 (diff) | |
download | mongo-9e3e96e4901ad21e411d9a781a79d26298392262.tar.gz |
[BUILDBOT-185] fix naming when you add modules
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 2015951d423..d564045232c 100644 --- a/SConstruct +++ b/SConstruct @@ -939,6 +939,9 @@ def getSystemInstallName(): if nix and os.uname()[2].startswith( "8." ): n += "-tiger" + if len(env.get("MONGO_MODULES", None)): + n += "-" + "-".join(env["MONGO_MODULES"].keys()) + try: findSettingsSetup() import settings |