mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-15 03:30:06 -04:00
grep(1) "-q" isn't portable (e.g., it won't work on Solaris 8), redirect
output to /dev/null instead. git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1595 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
a69aa93a2c
commit
986abfd43d
1 changed files with 1 additions and 1 deletions
|
|
@ -762,7 +762,7 @@ if test -n "$ac_cv_ps_varlist" ; then
|
|||
AC_DEFINE_UNQUOTED(PS_COLS,$ac_cv_ps_cols,
|
||||
[Number of columns in ps command])
|
||||
EXTRAS="$EXTRAS check_procs check_nagios"
|
||||
if echo "$ac_cv_ps_varlist" | grep -q "procetime"; then
|
||||
if echo "$ac_cv_ps_varlist" | grep "procetime" >/dev/null; then
|
||||
AC_DEFINE(PS_USES_PROCETIME,"yes",
|
||||
[Whether the ps utility uses the "procetime" field])
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue