X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/9caa7da143644ed93c6ba6351f48fa1327ad4392..ec12e432ab4d26e9fe77e7317be7fd7e364d0997:/docs/contrib/build_nmh diff --git a/docs/contrib/build_nmh b/docs/contrib/build_nmh index adc6e1cb..ef399f86 100755 --- a/docs/contrib/build_nmh +++ b/docs/contrib/build_nmh @@ -307,14 +307,15 @@ if [ $status -eq 0 ]; then fi fi -grep Error "$logfile" -grep warn "$logfile" - -if [ $status -eq 0 ]; then - [ $verbose -ge 1 ] && echo build completed successfully -else +grep 'Error' "$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:.*comparison between signed and unsigned' +if [ $status -ne 0 ]; then echo build failed! echo build log is in "$logfile" fi +[ $status -eq 0 -a $verbose -ge 1 ] && echo build completed successfully exit $status