diff options
author | horst3180 | 2015-06-26 13:15:22 +0200 |
---|---|---|
committer | horst3180 | 2015-06-26 13:15:22 +0200 |
commit | f05f23f9baa0e6bacef1edc150712f06da7433ad (patch) | |
tree | ea3e397670edac96def8da96a619224f56b6f1ae /m4 | |
parent | 4e6a8eb63bffecd219b7e8d4747860cb8470c652 (diff) | |
parent | c90c108c44e370bebbcef49e7fcdc597f62b2066 (diff) | |
download | solarc-theme-f05f23f9baa0e6bacef1edc150712f06da7433ad.tar.gz solarc-theme-f05f23f9baa0e6bacef1edc150712f06da7433ad.tar.xz solarc-theme-f05f23f9baa0e6bacef1edc150712f06da7433ad.zip |
Merge pull request #84 from ScoreUnder/patch-1
Fix broken test
Diffstat (limited to '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]) ]) |