diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-10-11 13:05:08 (GMT) |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-10-11 13:05:08 (GMT) |
commit | c246daeeeaea4febbaefbc2055ee17bc0904b9f0 (patch) | |
tree | 526c16adcc511bbb56785784a4a22edf85e2ed7e /tests/no-rpath.sh | |
parent | 07b8f2370672bd096e1fe5bd323f7e62792e724b (diff) | |
download | patchelf-c246daeeeaea4febbaefbc2055ee17bc0904b9f0.zip patchelf-c246daeeeaea4febbaefbc2055ee17bc0904b9f0.tar.gz patchelf-c246daeeeaea4febbaefbc2055ee17bc0904b9f0.tar.bz2 |
* `--interpreter' -> `--set-interpreter'.
Diffstat (limited to 'tests/no-rpath.sh')
-rwxr-xr-x | tests/no-rpath.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/no-rpath.sh b/tests/no-rpath.sh index 56c0646..4cfb55f 100755 --- a/tests/no-rpath.sh +++ b/tests/no-rpath.sh @@ -8,7 +8,7 @@ cp no-rpath scratch/ oldRPath=$(../src/patchelf --print-rpath scratch/no-rpath) if test -n "$oldRPath"; then exit 1; fi ../src/patchelf \ - --interpreter "$(../src/patchelf --print-interpreter ../src/patchelf)" \ + --set-interpreter "$(../src/patchelf --print-interpreter ../src/patchelf)" \ --set-rpath /foo:/bar:/xxxxxxxxxxxxxxx scratch/no-rpath newRPath=$(../src/patchelf --print-rpath scratch/no-rpath) |