diff options
author | David Tardon <dtardon@redhat.com> | 2013-04-24 12:46:41 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-04-24 13:05:08 +0000 |
commit | 97ac684062334a1128dd4167f759668113564d97 (patch) | |
tree | 944ef2833cbcaac377acdc6a88525ee26c17561c /solenv/bin | |
parent | 4402fd7452b9547dbd942e7eb06d15f19270e658 (diff) |
add another filename that shouln't be matched as error
This procedure must surely win the prize for the lamest error handling
mechanism ever conceived.
Change-Id: I90d2a1160ff3e1e870e9ca3f03c92436398c3b7f
Reviewed-on: https://gerrit.libreoffice.org/3595
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'solenv/bin')
-rw-r--r-- | solenv/bin/modules/installer/control.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/control.pm b/solenv/bin/modules/installer/control.pm index 87b961548e82..7600754443eb 100644 --- a/solenv/bin/modules/installer/control.pm +++ b/solenv/bin/modules/installer/control.pm @@ -334,6 +334,7 @@ sub check_logfile $compareline =~ s/error\.py//g; # removing all occurrences of "error.py" $compareline =~ s/error\.cpython-33\.py[oc]//g; # removing all occurrences of "error-cpython" $compareline =~ s/libgpg-error-0.dll//g; + $compareline =~ s/Error-xref\.html//g; if ( $compareline =~ /\bError\b/i ) { |