diff options
author | Mathew Robinson <chasinglogic@gmail.com> | 2019-04-23 12:25:41 -0400 |
---|---|---|
committer | Mathew Robinson <chasinglogic@gmail.com> | 2019-04-29 13:38:33 -0400 |
commit | c6eeaa4d0348ed3d8b213f893bf53c4d23724de5 (patch) | |
tree | ec9fec25ccbcbc5ba0429625e8377ea19fcad525 /etc/scons | |
parent | f86e1314a0acdcf209d1a5ff887ee192ea11b635 (diff) | |
download | mongo-c6eeaa4d0348ed3d8b213f893bf53c4d23724de5.tar.gz |
SERVER-39664 log the toolchain's build id as an FYI when building mongodb
Diffstat (limited to 'etc/scons')
-rw-r--r-- | etc/scons/mongodbtoolchain_v3_clang.vars | 4 | ||||
-rw-r--r-- | etc/scons/mongodbtoolchain_v3_gcc.vars | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/etc/scons/mongodbtoolchain_v3_clang.vars b/etc/scons/mongodbtoolchain_v3_clang.vars index 3901c666079..dfa764d940b 100644 --- a/etc/scons/mongodbtoolchain_v3_clang.vars +++ b/etc/scons/mongodbtoolchain_v3_clang.vars @@ -33,8 +33,8 @@ try: AS = subprocess.check_output([CXX, '-print-prog-name=as']).decode('utf-8').strip() OBJCOPY = subprocess.check_output([CXX, '-print-prog-name=objcopy']).decode('utf-8').strip() except subprocess.CalledProcessError as e: - print(("Failed while invoking toolchain binary " + CXX + ": " + e.output)) + print("Failed while invoking toolchain binary " + CXX + ": " + e.output) SCons.Script.Exit(-1) except OSError as e: - print(("Failed to invoke toolchain binary " + CXX + ": " + str(e))) + print("Failed to invoke toolchain binary " + CXX + ": " + str(e)) SCons.Script.Exit(-1) diff --git a/etc/scons/mongodbtoolchain_v3_gcc.vars b/etc/scons/mongodbtoolchain_v3_gcc.vars index c3547fd43aa..784d981568e 100644 --- a/etc/scons/mongodbtoolchain_v3_gcc.vars +++ b/etc/scons/mongodbtoolchain_v3_gcc.vars @@ -33,8 +33,8 @@ try: AS = subprocess.check_output([CXX, '-print-prog-name=as']).decode('utf-8').strip() OBJCOPY = subprocess.check_output([CXX, '-print-prog-name=objcopy']).decode('utf-8').strip() except subprocess.CalledProcessError as e: - print(("Failed while invoking toolchain binary " + CXX + ": " + e.output)) + print('Failed while invoking toolchain binary ' + CXX + ': ' + e.output) SCons.Script.Exit(-1) except OSError as e: - print(("Failed to invoke toolchain binary " + CXX + ": " + str(e))) + print('Failed to invoke toolchain binary ' + CXX + ': ' + str(e)) SCons.Script.Exit(-1) |