diff options
author | OBATA Akio <[email protected]> | 2015-08-04 19:08:45 +0900 |
---|---|---|
committer | OBATA Akio <[email protected]> | 2015-08-04 19:08:45 +0900 |
commit | 27fedce1949928d05f279d98aa77000d2f8e75f0 (patch) | |
tree | 6fc2d4e7dfc3893227e853d3d162d142f5b5bae3 /configure.ac | |
parent | 647de884f328d6b23aa6fea1bec50e9a4ee361a1 (diff) | |
download | mate-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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
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" |