]> diplodocus.org Git - nmh/commitdiff
Success! Clean build on the buildbot Solaris11 host.
authorDavid Levine <levinedl@acm.org>
Wed, 23 Oct 2013 16:24:34 +0000 (11:24 -0500)
committerDavid Levine <levinedl@acm.org>
Wed, 23 Oct 2013 16:24:34 +0000 (11:24 -0500)
configure.ac
docs/contrib/build_nmh

index 6ff7c9dff0e72e7abb9c89d6532c292d922438a9..38e2a58bf5fd16498cba625ef805e4bfe1e72e22 100644 (file)
@@ -565,7 +565,7 @@ dnl http://sourceforge.net/p/flex/bugs/140/
 AS_IF([test "$LEX" = flex],
       [AS_CASE([`$LEX -V`],
                [flex\ 2.5.35], [[LFLAGS=\
 AS_IF([test "$LEX" = flex],
       [AS_CASE([`$LEX -V`],
                [flex\ 2.5.35], [[LFLAGS=\
-'; cp -p $@ $@.ORIGINAL; printf "%s\n" '\''1,$$s/(size_t) \(num_to_read\)/\1/'\'' w q | ed -s $@; diff $@ $@.ORIGINAL || true']],
+'; printf "%s\n" '\''1,$$s/(size_t) \(num_to_read\)/\1/'\'' w q | ed -s $@']],
                [flex\ 2.5.3@<:@67@:>@], [[LFLAGS=\
 '; printf "%s\n" '\''1,$$s/\(  \)int i;/\1yy_size_t i;/'\'' w q | ed -s $@']])
        AC_SUBST([LFLAGS])])
                [flex\ 2.5.3@<:@67@:>@], [[LFLAGS=\
 '; printf "%s\n" '\''1,$$s/\(  \)int i;/\1yy_size_t i;/'\'' w q | ed -s $@']])
        AC_SUBST([LFLAGS])])
index ef399f86be7e9ddc25480a333671fa6ddb81b72a..adc6e1cb185c97cf1caf7822777094845bd408f6 100755 (executable)
@@ -307,15 +307,14 @@ if [ $status -eq 0 ]; then
   fi
 fi
 
   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
   echo build failed!
   echo build log is in "$logfile"
 fi
-[ $status -eq 0  -a  $verbose -ge 1 ]  &&  echo build completed successfully
 
 exit $status
 
 exit $status