From c90c108c44e370bebbcef49e7fcdc597f62b2066 Mon Sep 17 00:00:00 2001 From: Score_Under Date: Wed, 24 Jun 2015 16:38:15 +0100 Subject: Fix broken test Test with "==" is non-standard so it doesn't work on all shells. Arc-theme will not build without this change for me.--- m4/arc-enable.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'm4') diff --git a/m4/arc-enable.m4 b/m4/arc-enable.m4 index 99a5be8..a34e8c1 100644 --- a/m4/arc-enable.m4 +++ b/m4/arc-enable.m4 @@ -9,11 +9,11 @@ AC_DEFUN([ARC_ENABLE], [ )], [ENABLE_$1="$enableval"], [AS_IF( - [test "x$4" == "xdisable"], + [test "x$4" = "xdisable"], [ENABLE_$1="yes"], [ENABLE_$1="no"] )] ) - AM_CONDITIONAL([ENABLE_$1], [test "x$ENABLE_$1" == "xyes"]) + AM_CONDITIONAL([ENABLE_$1], [test "x$ENABLE_$1" = "xyes"]) AC_SUBST([ENABLE_$1]) ]) -- cgit v1.2.3