diff options
author | Andrew Morrow <acm@mongodb.com> | 2020-05-01 16:08:09 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-05-04 15:49:39 +0000 |
commit | 11a967280bcb5ac15096e1ee63d0b0c17ef1f616 (patch) | |
tree | 38afae05640be71bd8d0c6d115c79cc9cb94eda9 /SConstruct | |
parent | cf42e235242108486757e12a46e4856b33c83083 (diff) | |
download | mongo-11a967280bcb5ac15096e1ee63d0b0c17ef1f616.tar.gz |
SERVER-47906 Default target should always be install-default in hygienic mode
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 202c07535a1..ef44ec94487 100644 --- a/SConstruct +++ b/SConstruct @@ -4160,7 +4160,7 @@ if get_option('install-mode') == 'hygienic': ], ) - env.Default(env.Alias("install-default")) + env.Default(env.Alias("install-default")) elif get_option('separate-debug') == "on": env.FatalError('Cannot use --separate-debug without --install-mode=hygienic') |