From 36bcf5e0c34b3757df8e2616b6a21bed41d67ef3 Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Sat, 27 Jun 2015 14:33:32 +0900 Subject: Fix non-portable "==" operator for test(1) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') 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" -- cgit v1.2.1