diff options
author | OBATA Akio <[email protected]> | 2015-06-27 14:33:32 +0900 |
---|---|---|
committer | OBATA Akio <[email protected]> | 2015-06-27 14:33:32 +0900 |
commit | 36bcf5e0c34b3757df8e2616b6a21bed41d67ef3 (patch) | |
tree | 189e357dd0ba5b7dba14beed666ca6ff0e8cd6d0 /configure.ac | |
parent | 125eec13c95d8509e41a5bb400bd43567a21805d (diff) | |
download | mate-sensors-applet-36bcf5e0c34b3757df8e2616b6a21bed41d67ef3.tar.bz2 mate-sensors-applet-36bcf5e0c34b3757df8e2616b6a21bed41d67ef3.tar.xz |
Fix non-portable "==" operator for test(1)
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 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" |