summaryrefslogtreecommitdiff
path: root/pkg/osx/cp-with-libs
diff options
context:
space:
mode:
authorSimon Howard2010-01-10 20:46:15 +0000
committerSimon Howard2010-01-10 20:46:15 +0000
commit213b88ef3557f680233c6165b5dc6f2185c0f482 (patch)
treefe1bfe1189fede118b6f9641b0fadee5087fc09a /pkg/osx/cp-with-libs
parent7b07b99fa23b112986a6eb54fbec218f7069ef71 (diff)
downloadchocolate-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
Diffstat (limited to 'pkg/osx/cp-with-libs')
-rwxr-xr-xpkg/osx/cp-with-libs4
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
}