summaryrefslogtreecommitdiff
path: root/src/third_party/IntelRDFPMathLib20U1
diff options
context:
space:
mode:
authorDaniel Moody <daniel.moody@mongodb.com>2021-04-01 03:58:05 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-04-02 05:27:17 +0000
commit608b6537ffd35c6ed69674a1d6bd4e3eae4e531a (patch)
tree5aca7fe95cc24b1d21f40465d3b963c01ac4b88e /src/third_party/IntelRDFPMathLib20U1
parent5695ceb0affb21b3712c68884133db4af6ac32de (diff)
downloadmongo-608b6537ffd35c6ed69674a1d6bd4e3eae4e531a.tar.gz
SERVER-55165 fixed issue with inteldecimal script causing unnecessary rebuilds.
Diffstat (limited to 'src/third_party/IntelRDFPMathLib20U1')
-rw-r--r--src/third_party/IntelRDFPMathLib20U1/SConscript7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/third_party/IntelRDFPMathLib20U1/SConscript b/src/third_party/IntelRDFPMathLib20U1/SConscript
index 5efa50cbba3..b53c1f7762c 100644
--- a/src/third_party/IntelRDFPMathLib20U1/SConscript
+++ b/src/third_party/IntelRDFPMathLib20U1/SConscript
@@ -372,16 +372,15 @@ def export_file_generator(target, source, env, for_signature):
script = None
ret_value = None
-
- if script and not for_signature:
+ if script:
# ninja workaround:
# This is redundant for scons because the content signiture of this generator
# will cause the targets to be out of date. However ninja is not able to
- # content signature checks for expansions, so we setup the explicit depends
+ # content signature checks for expansions, so we setup the implicit depends
# to create this dependency for ninja.
#
# TODO remove this after https://jira.mongodb.org/browse/SERVER-54253
- env.Depends(target, script)
+ target.add_to_implicit([script])
return ret_value