diff options
author | Richard Samuels <richard.l.samuels@gmail.com> | 2022-03-30 13:20:48 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-03-30 14:08:19 +0000 |
commit | d4206bdeb19f4c5862280c04cd6b831c9ec03a40 (patch) | |
tree | cac56a77ed5ba54eb5ec167bd5c7cef5ee73f41d /SConstruct | |
parent | 93243e0c29ba1f3eae4dc0251e775dc4f6a90c6c (diff) | |
download | mongo-d4206bdeb19f4c5862280c04cd6b831c9ec03a40.tar.gz |
SERVER-62992 Remove need for resmoke.ini
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/SConstruct b/SConstruct index 534b67216ce..cdf1d1ab9dc 100644 --- a/SConstruct +++ b/SConstruct @@ -5362,24 +5362,6 @@ if has_option("cache"): addNoCacheEmitter(env['BUILDERS']['SharedLibrary']) addNoCacheEmitter(env['BUILDERS']['LoadableModule']) - -# We need to be explicit about including $DESTDIR here, unlike most -# other places. Normally, auto_install_binaries will take care of -# injecting DESTDIR for us, but we aren't using that now. -resmoke_install_dir = env.subst("$DESTDIR/$PREFIX_BINDIR") -resmoke_install_dir = os.path.normpath(resmoke_install_dir).replace("\\", r"\\") - -# Much blood sweat and tears were shed getting to this point. Any version of -# this that uses SCons builders and a scanner will either not regenerate when it -# should, cause everything to rebuild, or conflict with ninja. Sometimes all -# three. So we've decided it's best to just write this file here every time -# because it's the only solution that always works. -with open("resmoke.ini", "w") as resmoke_config: - resmoke_config.write(""" -[resmoke] -install_dir = {install_dir} -""".format(install_dir=resmoke_install_dir)) - env.SConscript( dirs=[ 'src', |