[Libreoffice-commits] core.git: solenv/bin

Stephan Bergmann sbergman at redhat.com
Thu May 16 12:54:43 PDT 2013


 solenv/bin/macosx-change-install-names.pl |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b281ffde21c44578f110531e469a8c0f02cdd958
Author: Stephan Bergmann <sbergman at redhat.com>
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";


More information about the Libreoffice-commits mailing list