summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-09-13 17:37:34 +0200
committerMichael Stahl <mstahl@redhat.com>2013-09-13 17:39:34 +0200
commit4956d0667d1e399007e088a0ea2079c20482e567 (patch)
tree16d5802eee1bc9224798cc751955d6052a6f5dbd /solenv
parentAvoid crash when a comment contains data, but no text (diff)
downloadcore-4956d0667d1e399007e088a0ea2079c20482e567.tar.gz
core-4956d0667d1e399007e088a0ea2079c20482e567.zip
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')
-rw-r--r--solenv/bin/macosx-change-install-names.pl2
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";
}
}