wok rev 15243
nagios-plugins: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 23 13:01:17 2013 +0000 (2013-09-23) |
parents | 934107586152 |
children | 496740a0005b |
files | nagios-plugins/receipt octave/receipt |
line diff
1.1 --- a/nagios-plugins/receipt Mon Sep 23 12:55:25 2013 +0000 1.2 +++ b/nagios-plugins/receipt Mon Sep 23 13:01:17 2013 +0000 1.3 @@ -26,7 +26,7 @@ 1.4 --with-fping-command="/usr/sbin/fping" \ 1.5 --mandir=/usr/share/man $CONFIGURE_ARGS 1.6 1.7 - make && 1.8 + make 2>&1 | grep -v "STRERROR" | grep -v "PERROR" && 1.9 make DESTDIR=$DESTDIR install && 1.10 make DESTDIR=$DESTDIR install-root 1.11 }
2.1 --- a/octave/receipt Mon Sep 23 12:55:25 2013 +0000 2.2 +++ b/octave/receipt Mon Sep 23 13:01:17 2013 +0000 2.3 @@ -31,7 +31,7 @@ 2.4 --mandir=/usr/share/man \ 2.5 --enable-shared --disable-static --disable-docs \ 2.6 $CONFIGURE_ARGS && 2.7 - LANG=C make $MAKEFLAGS | grep -v "STRERROR" | grep -v "PERROR" && 2.8 + LANG=C make $MAKEFLAGS 2>&1 | grep -v "STRERROR" | grep -v "PERROR" && 2.9 make DESTDIR=$DESTDIR install 2.10 } 2.11