diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-05-23 18:49:19 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-05-24 14:38:28 +0000 |
commit | a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6 (patch) | |
tree | 1d691e801148ab32f468429a90c61cb1c02372f8 /mesonbuild/scripts | |
parent | ecbeae565b1597f91f37513c258c077b1f54ad21 (diff) | |
download | meson-a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6.zip meson-a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6.tar.gz meson-a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6.tar.bz2 |
depfixer: We no longer run this as a script
Diffstat (limited to 'mesonbuild/scripts')
-rw-r--r-- | mesonbuild/scripts/depfixer.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mesonbuild/scripts/depfixer.py b/mesonbuild/scripts/depfixer.py index 185c76a..eb99378 100644 --- a/mesonbuild/scripts/depfixer.py +++ b/mesonbuild/scripts/depfixer.py @@ -396,16 +396,3 @@ def fix_rpath(fname, new_rpath, verbose=True): if shutil.which('install_name_tool'): fix_darwin(fname, new_rpath) return 0 - -def run(args): - if len(args) < 1 or len(args) > 2: - 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]) - sys.exit(1) - fname = args[0] - new_rpath = None if len(args) == 1 else args[1] - return fix_rpath(fname, new_rpath) - -if __name__ == '__main__': - sys.exit(run(sys.argv[1:])) |