From 377e6bc04e1da64f4348b7e8a6ae7c906183fd11 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sat, 4 Nov 2023 13:54:42 -0400 Subject: [PATCH] install_name_tool -change_rpath is actually just -change. weird. --- embedded/install_name_tool.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded/install_name_tool.pl b/embedded/install_name_tool.pl index 01171e3..d1d7bb5 100644 --- a/embedded/install_name_tool.pl +++ b/embedded/install_name_tool.pl @@ -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;