]> diplodocus.org Git - nmh/blobdiff - docs/contrib/build_nmh
Changed detection of warning in build_nmh for sign mismatch
[nmh] / docs / contrib / build_nmh
index f17b240fb1d2ffbc163190e1f4b8d7b4261fcb46..22c4efb347cb7fc2e70a4d14505742dd92145592 100755 (executable)
@@ -308,7 +308,10 @@ 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:.*comparison between signed and unsigned'
 if [ $status -ne 0 ]; then
   echo build failed!
   echo build log is in "$logfile"