aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorst31802015-06-26 13:15:22 +0200
committerhorst31802015-06-26 13:15:22 +0200
commitf05f23f9baa0e6bacef1edc150712f06da7433ad (patch)
treeea3e397670edac96def8da96a619224f56b6f1ae
parent4e6a8eb63bffecd219b7e8d4747860cb8470c652 (diff)
parentc90c108c44e370bebbcef49e7fcdc597f62b2066 (diff)
downloadsolarc-theme-f05f23f9baa0e6bacef1edc150712f06da7433ad.tar.gz
solarc-theme-f05f23f9baa0e6bacef1edc150712f06da7433ad.tar.xz
solarc-theme-f05f23f9baa0e6bacef1edc150712f06da7433ad.zip
Merge pull request #84 from ScoreUnder/patch-1
Fix broken test
-rw-r--r--m4/arc-enable.m44
1 files changed, 2 insertions, 2 deletions
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])
])