install_name_tool -change_rpath is actually just -change. weird.

This commit is contained in:
Kelvin Sherlock
2023-11-04 13:54:42 -04:00
parent 6ef3911da7
commit 377e6bc04e
+1 -1
View File
@@ -63,7 +63,7 @@ my @args;
# equal or changeable.
if (scalar @rpaths == 1) {
exit(0) if $rpaths[0] eq $path;
push(@args, ("-change_rpath", ${rpaths[0]}, $path))
push(@args, ("-change", ${rpaths[0]}, $path))
} else {
my @tmp;