diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-07-03 15:00:16 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-07-03 15:00:16 (GMT) |
commit | 1ca485eb821cd388270a996318e3ac9a8c9f9728 (patch) | |
tree | 6080eac408a03899ab89ab2a044dda50e8d2ca6a | |
parent | c767ee06459b3bce99c1c6f011c3cd1d547e9eeb (diff) | |
download | monitoring-plugins-1ca485eb821cd388270a996318e3ac9a8c9f9728.tar.gz |
Changing $() to `` to be compatible with Solaris' sh
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@584 f882894a-f735-0410-b71e-b25c423dba1c
-rwxr-xr-x | tools/setup | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/setup b/tools/setup index 904120f..084399b 100755 --- a/tools/setup +++ b/tools/setup | |||
@@ -6,10 +6,10 @@ | |||
6 | # Requires: automake, autoconf, dpkg-dev | 6 | # Requires: automake, autoconf, dpkg-dev |
7 | # set -e | 7 | # set -e |
8 | 8 | ||
9 | MAKE=$(which gnumake) | 9 | MAKE=`which gnumake` |
10 | if test ! -x "$MAKE" ; then MAKE=$(which gmake) ; fi | 10 | if test ! -x "$MAKE" ; then MAKE=`which gmake` ; fi |
11 | if test ! -x "$MAKE" ; then MAKE=$(which make) ; fi | 11 | if test ! -x "$MAKE" ; then MAKE=`which make` ; fi |
12 | HAVE_GNU_MAKE=$($MAKE --version|grep -c "Free Software Foundation") | 12 | HAVE_GNU_MAKE=`$MAKE --version|grep -c "Free Software Foundation"` |
13 | 13 | ||
14 | if test "$HAVE_GNU_MAKE" != "1"; then | 14 | if test "$HAVE_GNU_MAKE" != "1"; then |
15 | echo Could not find GNU make on this system, can not proceed with build. | 15 | echo Could not find GNU make on this system, can not proceed with build. |