summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2013-11-11 07:47:15 +0100
committerAndras Timar <andras.timar@collabora.com>2013-11-11 07:48:25 +0100
commit440c4cd9ec40fc28bb93219c0fad421e28266d09 (patch)
treeef172e0779dfaa86b5eae40e6a810dd496c15ee9
parentca0f3dd8c3ddfaffdb3aa2d2c42a66450fd1320a (diff)
do not fail the build, if codesign returns non-zero
Change-Id: Ie8beb4b788b652522415d21ce432dcf48fa7327a
-rwxr-xr-xsolenv/bin/modules/installer/simplepackage.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/simplepackage.pm b/solenv/bin/modules/installer/simplepackage.pm
index 32d3066ec15d..2a4d9242a5e1 100755
--- a/solenv/bin/modules/installer/simplepackage.pm
+++ b/solenv/bin/modules/installer/simplepackage.pm
@@ -445,8 +445,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
{