diff options
author | Matt Kangas <matt.kangas@mongodb.com> | 2014-11-25 17:14:05 -0500 |
---|---|---|
committer | Matt Kangas <matt.kangas@mongodb.com> | 2014-12-22 17:43:36 -0500 |
commit | e295dccc9f2251206b081ed1f2ad43c37751ae46 (patch) | |
tree | 33f42643b47077b7ab7063a519b8e055b93a1778 /SConstruct | |
parent | 92982e76c034f864f4499a0145ce7a75dc682812 (diff) | |
download | mongo-e295dccc9f2251206b081ed1f2ad43c37751ae46.tar.gz |
SERVER-16197 fix scons install, dist
Option '--use-new-tools' now controls whether scons looks for tools at all.
"scons install" no longer tries to install external tools.
"scons dist" fails if --use-new-tools not specified or if external tools are missing
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 0edc927f11b..2dbb78ad436 100644 --- a/SConstruct +++ b/SConstruct @@ -2222,7 +2222,6 @@ env.AlwaysBuild( "s3shell" ) def s3dist( env , target , source ): s3push( str(source[0]) , "mongodb" ) -env.Alias( "dist" , '$SERVER_ARCHIVE' ) env.AlwaysBuild(env.Alias( "s3dist" , [ '$SERVER_ARCHIVE' ] , [ s3dist ] )) # --- an uninstall target --- |