summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOBATA Akio <[email protected]>2015-06-27 14:33:32 +0900
committerOBATA Akio <[email protected]>2015-06-27 14:33:32 +0900
commit36bcf5e0c34b3757df8e2616b6a21bed41d67ef3 (patch)
tree189e357dd0ba5b7dba14beed666ca6ff0e8cd6d0
parent125eec13c95d8509e41a5bb400bd43567a21805d (diff)
downloadmate-sensors-applet-36bcf5e0c34b3757df8e2616b6a21bed41d67ef3.tar.bz2
mate-sensors-applet-36bcf5e0c34b3757df8e2616b6a21bed41d67ef3.tar.xz
Fix non-portable "==" operator for test(1)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 285ddf8..8473c37 100644
--- a/configure.ac
+++ b/configure.ac
@@ -242,7 +242,7 @@ AC_ARG_WITH(aticonfig,
with_aticonfig="check"
])
-if test "x$with_aticonfig" == "xcheck"; then
+if test "x$with_aticonfig" = "xcheck"; then
AC_CHECK_PROG(ATICONFIG_EXE, ["$aticonfig_exe"], yes, no)
if test "x$ATICONFIG_EXE" = "xno"; then
with_aticonfig="no"