Kaydet (Commit) 3ad9bb02 authored tarafından Ariel Constenla-Haile's avatar Ariel Constenla-Haile

Fix build breaker

The log file is checked for the word "error" at the end of the packaging
process, this breaks the build when the word is part of a file name,
like boost error.hpp/error.ipp headers.
üst c227c27e
...@@ -347,6 +347,9 @@ sub check_logfile ...@@ -347,6 +347,9 @@ sub check_logfile
$compareline =~ s/Error\.ulf//g; # removing all occurences of "Error.ulf" $compareline =~ s/Error\.ulf//g; # removing all occurences of "Error.ulf"
$compareline =~ s/Error\.idl//g; # removing all occurences of "Error.idl" $compareline =~ s/Error\.idl//g; # removing all occurences of "Error.idl"
$compareline =~ s/Error\.html//g; # removing all occurences of "Error.html" $compareline =~ s/Error\.html//g; # removing all occurences of "Error.html"
# Ugly workaround for (boost) headers
$compareline =~ s/error\.hpp//g; # removing all occurences of "error.hpp"
$compareline =~ s/error\.ipp//g; # removing all occurences of "error.ipp"
if ( $compareline =~ /\bError\b/i ) if ( $compareline =~ /\bError\b/i )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment