diff options
author | Martin Wimpress <[email protected]> | 2015-06-27 08:13:41 +0100 |
---|---|---|
committer | Martin Wimpress <[email protected]> | 2015-06-27 08:13:41 +0100 |
commit | 3aaa999053462f255aca40300042c209b47aca65 (patch) | |
tree | 189e357dd0ba5b7dba14beed666ca6ff0e8cd6d0 | |
parent | 125eec13c95d8509e41a5bb400bd43567a21805d (diff) | |
parent | 36bcf5e0c34b3757df8e2616b6a21bed41d67ef3 (diff) | |
download | mate-sensors-applet-3aaa999053462f255aca40300042c209b47aca65.tar.bz2 mate-sensors-applet-3aaa999053462f255aca40300042c209b47aca65.tar.xz |
Merge pull request #29 from obache/neatsrc
Fix non-portable "==" operator for test(1)
-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" |