aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-05-23 18:49:19 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-05-24 14:38:28 +0000
commita6c9f98c57e8f42517d41d4c46ccf40163b6e7c6 (patch)
tree1d691e801148ab32f468429a90c61cb1c02372f8 /mesonbuild/scripts
parentecbeae565b1597f91f37513c258c077b1f54ad21 (diff)
downloadmeson-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.py13
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:]))