From: David Levine Date: Mon, 11 Mar 2013 23:42:16 +0000 (-0500) Subject: Ignore the sign mismatch warning when sbr/dtimep.c is built with X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/76ddfab4d76264b1cb30d7df642965c141e61545?ds=inline;hp=--cc Ignore the sign mismatch warning when sbr/dtimep.c is built with flex 2.5.36 or 2.5.37. --- 76ddfab4d76264b1cb30d7df642965c141e61545 diff --git a/docs/contrib/build_nmh b/docs/contrib/build_nmh index f17b240f..0b9e582e 100755 --- a/docs/contrib/build_nmh +++ b/docs/contrib/build_nmh @@ -308,7 +308,9 @@ if [ $status -eq 0 ]; then fi grep 'Error' "$logfile" -grep 'warn' "$logfile" +#### Ignore the warning when sbr/dtimep.c is built with flex 2.5.36 +#### or 2.5.37. +grep 'warn' "$logfile" | grep -v 'sbr/dtimep.c:.*-Wsign-compare' if [ $status -ne 0 ]; then echo build failed! echo build log is in "$logfile"