[Nagiosplug-checkins] CVS: nagiosplug/tools setup,1.9,1.10

Ton Voon tonvoon at users.sourceforge.net
Thu Jul 3 08:25:32 CEST 2003


Update of /cvsroot/nagiosplug/nagiosplug/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv21038/tools

Modified Files:
	setup 
Log Message:
Changing $() to `` to be compatible with Solaris' sh


Index: setup
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/tools/setup,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** setup	3 Jul 2003 03:23:14 -0000	1.9
--- setup	3 Jul 2003 15:00:16 -0000	1.10
***************
*** 7,14 ****
  # set -e
  
! MAKE=$(which gnumake)
! if test ! -x "$MAKE" ; then MAKE=$(which gmake) ; fi
! if test ! -x "$MAKE" ; then MAKE=$(which make) ; fi
! HAVE_GNU_MAKE=$($MAKE --version|grep -c "Free Software Foundation")
  
  if test "$HAVE_GNU_MAKE" != "1"; then 
--- 7,14 ----
  # set -e
  
! MAKE=`which gnumake`
! if test ! -x "$MAKE" ; then MAKE=`which gmake` ; fi
! if test ! -x "$MAKE" ; then MAKE=`which make` ; fi
! HAVE_GNU_MAKE=`$MAKE --version|grep -c "Free Software Foundation"`
  
  if test "$HAVE_GNU_MAKE" != "1"; then 





More information about the Commits mailing list