aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorScore_Under2015-06-24 16:38:15 +0100
committerScore_Under2015-06-24 16:38:15 +0100
commitc90c108c44e370bebbcef49e7fcdc597f62b2066 (patch)
treeea3e397670edac96def8da96a619224f56b6f1ae /m4
parent4e6a8eb63bffecd219b7e8d4747860cb8470c652 (diff)
downloadsolarc-theme-c90c108c44e370bebbcef49e7fcdc597f62b2066.tar.gz
solarc-theme-c90c108c44e370bebbcef49e7fcdc597f62b2066.tar.xz
solarc-theme-c90c108c44e370bebbcef49e7fcdc597f62b2066.zip
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.
Diffstat (limited to 'm4')
-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])
])