diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-06-08 22:39:20 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-06-08 22:39:20 (GMT) |
commit | 7da0b3522a2cb3515e84733b3d3a357c2728b069 (patch) | |
tree | 885d8299632f6b0b43e7ce87bb3baad1936f7bfb /configure.in | |
parent | e0ba1803822af74bdd85c1a0f413b56ec6225342 (diff) | |
download | monitoring-plugins-7da0b3522a2cb3515e84733b3d3a357c2728b069.tar.gz |
Fixed quoting on SWAP_FORMAT
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@540 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 9c4265f..2784b2d 100644 --- a/configure.in +++ b/configure.in | |||
@@ -1308,12 +1308,12 @@ then | |||
1308 | 1308 | ||
1309 | elif [$PATH_TO_SWAP -l 2>/dev/null | egrep -i "^swapfile +dev +swaplo +blocks +free" >/dev/null] | 1309 | elif [$PATH_TO_SWAP -l 2>/dev/null | egrep -i "^swapfile +dev +swaplo +blocks +free" >/dev/null] |
1310 | then | 1310 | then |
1311 | ac_cv_swap_format=["%*s %*[[0-9,-]] %*d %d %d"] | 1311 | ac_cv_swap_format=["%*s %*[0-9,-] %*d %d %d"] |
1312 | AC_MSG_RESULT([using Solaris format swap]) | 1312 | AC_MSG_RESULT([using Solaris format swap]) |
1313 | 1313 | ||
1314 | elif [$PATH_TO_SWAP -l 2>/dev/null | egrep -i "^path +dev +swaplo +blocks +free" >/dev/null] | 1314 | elif [$PATH_TO_SWAP -l 2>/dev/null | egrep -i "^path +dev +swaplo +blocks +free" >/dev/null] |
1315 | then | 1315 | then |
1316 | ac_cv_swap_format=["%*s %*[[0-9,-]] %*d %d %d"] | 1316 | ac_cv_swap_format=["%*s %*[0-9,-] %*d %d %d"] |
1317 | AC_MSG_RESULT([using Unixware format swap]) | 1317 | AC_MSG_RESULT([using Unixware format swap]) |
1318 | 1318 | ||
1319 | fi | 1319 | fi |