Skip to content

Commit

Permalink
Fix for DLL path for mac app
Browse files Browse the repository at this point in the history
  • Loading branch information
ssheorey committed Dec 14, 2024
1 parent a8311fc commit aae0a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/apps/fixup_macosx_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ for lib in $libs; do
if [[ ${lib:0:1} != "@" ]]; then # external library with a regular path
libname=$(basename $lib)
# copy the external library, resolve symlink chain
cp -aRL "$lib" "$exeDir/$lib"
cp -aRL "$lib" "$exeDir"
# change its path in the executable
newpath="@executable_path/$libname"
echo "$lib -> $newpath"
Expand Down

0 comments on commit aae0a05

Please sign in to comment.