From 0644f5a497bc49740e82a3219c58eea8a4065345 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Fri, 5 Dec 2003 18:08:16 +0000 Subject: Not correctly working out ps command if /usr/ucb before /usr/bin in PATH for Solaris (reported by Ben Whaley) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@786 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/configure.in b/configure.in index 912f43e..9fe4ded 100644 --- a/configure.in +++ b/configure.in @@ -675,7 +675,8 @@ then dnl SunOS 4.1.3: dnl F UID PID PPID CP PRI NI SZ RSS WCHAN STAT TT TIME COMMAND -elif ps -laxnwww 2>/dev/null | \ +dnl Need the head -1 otherwise test will work because arguments are found +elif ps -laxnwww 2>/dev/null | head -1 | \ egrep -i ["^ *F(LAGS)? +UID +PID +PPID +CP +PRI +NI +(SZ)|(VSZ)|(SIZE) +RSS +WCHAN +STAT? +TTY? +TIME +COMMAND"] >/dev/null then ac_cv_ps_varlist="[&procuid,&procppid,&procvsz,&procrss,procstat,&pos,procprog]" @@ -843,7 +844,7 @@ else AC_MSG_WARN([unable to find usable ps syntax - check_procs and check_nagios will not be compiled]) fi -if test -n $ac_cv_ps_varlist ; then +if test -n "$ac_cv_ps_varlist" ; then AC_DEFINE_UNQUOTED(PS_VARLIST,$ac_cv_ps_varlist, [Variable list for sscanf of 'ps' output]) AC_DEFINE_UNQUOTED(PS_COMMAND,"$ac_cv_ps_command", -- cgit v0.10-9-g596f