diff options
Diffstat (limited to 'tools/scan-build-py/bin/intercept-build')
-rw-r--r-- | tools/scan-build-py/bin/intercept-build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/scan-build-py/bin/intercept-build b/tools/scan-build-py/bin/intercept-build index 164f2e68be93..2c3a26ecdddc 100644 --- a/tools/scan-build-py/bin/intercept-build +++ b/tools/scan-build-py/bin/intercept-build @@ -13,5 +13,5 @@ import os.path this_dir = os.path.dirname(os.path.realpath(__file__)) sys.path.append(os.path.dirname(this_dir)) -from libscanbuild.intercept import intercept_build_main -sys.exit(intercept_build_main(this_dir)) +from libscanbuild.intercept import intercept_build +sys.exit(intercept_build()) |