diff options
author | Andrew Morrow <acm@mongodb.com> | 2017-11-02 10:47:51 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2017-11-02 16:59:48 -0400 |
commit | f96e0ef10baac1d2ca254c2c4ef78ef0ff8a0542 (patch) | |
tree | d70d67d9aea394fd5ea8efc5d024f582d3418be5 /site_scons | |
parent | ba06ea5e2c4d5c54d6ae715691a306eb0254d7a4 (diff) | |
download | mongo-f96e0ef10baac1d2ca254c2c4ef78ef0ff8a0542.tar.gz |
SERVER-31800 Disable location information in ABI XML
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/site_tools/abilink.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site_scons/site_tools/abilink.py b/site_scons/site_tools/abilink.py index 4e4fdcd6310..65f2a995719 100644 --- a/site_scons/site_tools/abilink.py +++ b/site_scons/site_tools/abilink.py @@ -63,7 +63,7 @@ def _add_scanner(builder): def _add_action(builder): actions = builder.action - builder.action = actions + SCons.Action.Action("$ABIDW $TARGET | md5sum > ${TARGET}.abidw") + builder.action = actions + SCons.Action.Action("$ABIDW --no-show-locs $TARGET | md5sum > ${TARGET}.abidw") def exists(env): result = _detect(env) != None |