diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-17 00:06:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 00:06:25 +0200 |
commit | f77c3176ab5cb583fc32bfdebeb320481b7d3592 (patch) | |
tree | 05ac4efbe915aed534b3678b3c358547176314ad /mesonbuild/scripts/depfixer.py | |
parent | 24c2e4d3ac4415a0033339cdc74c9251126166ed (diff) | |
parent | fff3ded2978ccbeae2d2f6a95415b663fce850d8 (diff) | |
download | meson-f77c3176ab5cb583fc32bfdebeb320481b7d3592.zip meson-f77c3176ab5cb583fc32bfdebeb320481b7d3592.tar.gz meson-f77c3176ab5cb583fc32bfdebeb320481b7d3592.tar.bz2 |
Merge pull request #2070 from mesonbuild/lgtmfixex
Static analyzer fixes
Diffstat (limited to 'mesonbuild/scripts/depfixer.py')
-rw-r--r-- | mesonbuild/scripts/depfixer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/depfixer.py b/mesonbuild/scripts/depfixer.py index 1169b7e..1528ddb 100644 --- a/mesonbuild/scripts/depfixer.py +++ b/mesonbuild/scripts/depfixer.py @@ -337,7 +337,7 @@ def run(args): print('This application resets target rpath.') print('Don\'t run this unless you know what you are doing.') print('%s: <binary file> <prefix>' % sys.argv[0]) - exit(1) + sys.exit(1) with Elf(args[0]) as e: if len(args) == 1: e.print_rpath() |