[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.1' - solenv/bin

Andras Timar andras.timar at collabora.com
Tue Nov 12 02:35:41 PST 2013


 solenv/bin/modules/installer/simplepackage.pm |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 00413d8269ad2cc50cd6bc835b6b5453fdf7f5c2
Author: Andras Timar <andras.timar at collabora.com>
Date:   Tue Nov 12 11:34:47 2013 +0100

    do not fail the build, if codesign returns non-zero
    
    Change-Id: Ic3c25af11f6d723ab0aff845dd28eae343a4df78

diff --git a/solenv/bin/modules/installer/simplepackage.pm b/solenv/bin/modules/installer/simplepackage.pm
index bf769f4..9d579be 100644
--- a/solenv/bin/modules/installer/simplepackage.pm
+++ b/solenv/bin/modules/installer/simplepackage.pm
@@ -432,8 +432,10 @@ sub create_package
 
                 if ($returnvalue)
                 {
-                    $infoline = "ERROR: Could not execute \"$systemcall\"!\n";
+                    $infoline = "WARNING: \"$systemcall\" returned with non-zero!\n";
+                    $infoline .= "Return value: " . ($returnvalue >> 8) . "\n";
                     push( @installer::globals::logfileinfo, $infoline);
+                    print $infoline;
                 }
                 else
                 {


More information about the Libreoffice-commits mailing list