Change "@executable_path@" to "@executable_path"
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1799
This commit is contained in:
parent
7b07b99fa2
commit
213b88ef35
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue