summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOBATA Akio <[email protected]>2015-08-04 19:08:45 +0900
committerOBATA Akio <[email protected]>2015-08-04 19:08:45 +0900
commit27fedce1949928d05f279d98aa77000d2f8e75f0 (patch)
tree6fc2d4e7dfc3893227e853d3d162d142f5b5bae3
parent647de884f328d6b23aa6fea1bec50e9a4ee361a1 (diff)
downloadmate-applets-27fedce1949928d05f279d98aa77000d2f8e75f0.tar.bz2
mate-applets-27fedce1949928d05f279d98aa77000d2f8e75f0.tar.xz
Use `test' instead of `[ ]' in configure.ac
[] is misrecognized by autoconf and broken configure script is generated.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9c3ea3c0..0c9f06b5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -316,7 +316,7 @@ if test x$disable_battstat = xno; then
;;
# list of supported OS cores that do not use libapm
i386-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu)
- if [ -n "${OS_SYS}" ]; then
+ if test -n "${OS_SYS}"; then
ACPIINC="-I${OS_SYS}"
else
ACPIINC="-I/usr/src/sys"