diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-09-13 17:37:34 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-09-13 17:39:34 +0200 |
commit | 4956d0667d1e399007e088a0ea2079c20482e567 (patch) | |
tree | 16d5802eee1bc9224798cc751955d6052a6f5dbd /solenv/bin | |
parent | 3750deae3e2d8fcf8bcf795fe327e1da370a2c4d (diff) |
configure: ensure that install_name_tool matches the toolchain...
... used to build, since otherwise it'll break with "malformed object"
errors. Alo replace now unused XCRUN variable.
Change-Id: I58a20c34f903b7a7acb46597d94243389e6b3842
Diffstat (limited to 'solenv/bin')
-rw-r--r-- | solenv/bin/macosx-change-install-names.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/macosx-change-install-names.pl b/solenv/bin/macosx-change-install-names.pl index cbfd06f937c7..6d7edb2e799e 100644 --- a/solenv/bin/macosx-change-install-names.pl +++ b/solenv/bin/macosx-change-install-names.pl @@ -90,7 +90,7 @@ foreach $file (@ARGV) close(IN) or die "got $? from $call"; if ($change ne "") { - $call = "$ENV{'XCRUN'} install_name_tool$change $file"; + $call = "$ENV{'INSTALL_NAME_TOOL'} $change $file"; system($call) == 0 or die "cannot $call"; } } |