diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-08-14 14:29:59 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-08-14 14:29:59 -0400 |
commit | 75a58367af664525db5e7226db81082be19e4f06 (patch) | |
tree | 7a1a6f006bfe42760d74cf4a0b1e54c64551edca /SConstruct | |
parent | 66637b35da76b8fb4fe8876abd99a71cc6cab457 (diff) | |
download | mongo-75a58367af664525db5e7226db81082be19e4f06.tar.gz |
windows fix MINORr0.9.8
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 79db4d52f9b..99c15f55d6d 100644 --- a/SConstruct +++ b/SConstruct @@ -1144,7 +1144,7 @@ def getSystemInstallName(): n = platform + "-" + processor if static: n += "-static" - if os.uname()[2].startswith( "8." ): + if nix and os.uname()[2].startswith( "8." ): n += "-tiger" return n |