diff options
author | Simon Howard | 2010-01-10 20:46:15 +0000 |
---|---|---|
committer | Simon Howard | 2010-01-10 20:46:15 +0000 |
commit | 213b88ef3557f680233c6165b5dc6f2185c0f482 (patch) | |
tree | fe1bfe1189fede118b6f9641b0fadee5087fc09a | |
parent | 7b07b99fa23b112986a6eb54fbec218f7069ef71 (diff) | |
download | chocolate-doom-213b88ef3557f680233c6165b5dc6f2185c0f482.tar.gz chocolate-doom-213b88ef3557f680233c6165b5dc6f2185c0f482.tar.bz2 chocolate-doom-213b88ef3557f680233c6165b5dc6f2185c0f482.zip |
Change "@executable_path@" to "@executable_path"
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1799
-rwxr-xr-x | pkg/osx/cp-with-libs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/osx/cp-with-libs b/pkg/osx/cp-with-libs index 18274172..04fb5bc6 100755 --- a/pkg/osx/cp-with-libs +++ b/pkg/osx/cp-with-libs @@ -83,14 +83,14 @@ install_with_deps() { # copy inside the package: lib_name=$(basename "$REPLY") - install_name_tool -change "$REPLY" "@executable_path@/$lib_name" \ + install_name_tool -change "$REPLY" "@executable_path/$lib_name" \ "$dest_file" done # If this is a library that we have installed, change its id: if is_dylib "$dest_file"; then - install_name_tool -id "@executable_path@/$bin_name" "$dest_file" + install_name_tool -id "@executable_path/$bin_name" "$dest_file" fi } |