From ee07202a69e671c35bbbfd2a304c3ec6d23d37ae Mon Sep 17 00:00:00 2001 From: Joe Garcia <joe.garcia@ssec.wisc.edu> Date: Tue, 18 Feb 2014 10:40:14 -0600 Subject: [PATCH] fix defaults for 64bit --- ShellB3/sbin/patchelf | 1 - ShellB3/sbin/thosewhohuntelfs.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) delete mode 120000 ShellB3/sbin/patchelf diff --git a/ShellB3/sbin/patchelf b/ShellB3/sbin/patchelf deleted file mode 120000 index 6d64ef68..00000000 --- a/ShellB3/sbin/patchelf +++ /dev/null @@ -1 +0,0 @@ -patchelf.x86_64 \ No newline at end of file diff --git a/ShellB3/sbin/thosewhohuntelfs.py b/ShellB3/sbin/thosewhohuntelfs.py index 1f6dd028..56c154cc 100755 --- a/ShellB3/sbin/thosewhohuntelfs.py +++ b/ShellB3/sbin/thosewhohuntelfs.py @@ -453,7 +453,7 @@ def main(): usage = """ %prog [options] base-directory rpath1 rpath2 rpath3 ... example: -python thosewhohuntelfs.py . common/lib lib --exclude='.*?build/.*' --dry-run --patchelf=sbin/patchelf +python thosewhohuntelfs.py . common/lib lib --exclude='.*?build/.*' --dry-run --patchelf=sbin/patchelf.x86_64 """ parser = optparse.OptionParser(usage) parser.add_option('-t', '--test', dest="self_test", @@ -470,7 +470,7 @@ python thosewhohuntelfs.py . common/lib lib --exclude='.*?build/.*' --dry-run -- help='each occurrence increases verbosity 1 level through ERROR-WARNING-INFO-DEBUG') parser.add_option('-x', '--exclude', dest='exclude_re', help='regular expression for pathnames to exclude, optional') - parser.add_option('-p', '--patchelf', dest='patchelf', default='sbin/patchelf', + parser.add_option('-p', '--patchelf', dest='patchelf', default='sbin/patchelf.x86_64', help='location of patchelf (Linux)') parser.add_option('-i', '--install_name_tool', dest='install_name_tool', default='/usr/bin/install_name_tool', help='location of install_name_tool (MacOSX)') -- GitLab