Change the regex so that it matches sentences like "NOTICE: Some of the

executables in this directory need the TAUCS library and will not be
compiled." or "This demo needs the CGAL ImageIO library, and will not be
compiled."
This commit is contained in:
Laurent Rineau 2009-11-26 09:38:41 +00:00
parent 762634c261
commit 6c9d556a14
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ print_testresult()
then
RESULT="w"
else
if grep -E -q 'NOTICE: This [^ ]+ (require|need)' CompilerOutput_$1
if grep -E -q 'NOTICE: .*(need|require).*and.*will not be' CompilerOutput_$1
then
RESULT="r"
else