]> diplodocus.org Git - nmh/blobdiff - docs/contrib/build_nmh
The buildbot is up, put in hacks to enable debug and print out hostname.
[nmh] / docs / contrib / build_nmh
index ef399f86be7e9ddc25480a333671fa6ddb81b72a..adc6e1cb185c97cf1caf7822777094845bd408f6 100755 (executable)
@@ -307,15 +307,14 @@ if [ $status -eq 0 ]; then
   fi
 fi
 
-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
+grep Error "$logfile"
+grep warn "$logfile"
+
+if [ $status -eq 0 ]; then
+  [ $verbose -ge 1 ]  &&  echo build completed successfully
+else
   echo build failed!
   echo build log is in "$logfile"
 fi
-[ $status -eq 0  -a  $verbose -ge 1 ]  &&  echo build completed successfully
 
 exit $status