diff options
author | Score_Under | 2015-06-24 16:38:15 +0100 |
---|---|---|
committer | Score_Under | 2015-06-24 16:38:15 +0100 |
commit | c90c108c44e370bebbcef49e7fcdc597f62b2066 (patch) | |
tree | ea3e397670edac96def8da96a619224f56b6f1ae /m4/arc-enable.m4 | |
parent | 4e6a8eb63bffecd219b7e8d4747860cb8470c652 (diff) | |
download | solarc-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/arc-enable.m4')
-rw-r--r-- | m4/arc-enable.m4 | 4 |
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]) ]) |