solenv/bin/macosx-change-install-names.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit b281ffde21c44578f110531e469a8c0f02cdd958 Author: Stephan Bergmann <[email protected]> Date: Thu May 16 21:53:02 2013 +0200 Make sure macosx-change-install-names fails if otool -L fails Change-Id: Ic3d3abc5404446ca378fda9ccfc12d741a560594 diff --git a/solenv/bin/macosx-change-install-names.pl b/solenv/bin/macosx-change-install-names.pl index a6c3eb7..a7984cb 100644 --- a/solenv/bin/macosx-change-install-names.pl +++ b/solenv/bin/macosx-change-install-names.pl @@ -94,7 +94,7 @@ foreach $file (@ARGV) $change .= " -change $1 " . action($type, $loc, $4) . $6; } } - close(IN); + close(IN) or die "got $? from $call"; if ($change ne "") { $call = "$ENV{'XCRUN'} install_name_tool$change $file"; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
