1
0
mirror of https://github.com/horst3180/arc-theme.git synced 2024-09-29 06:20:43 +00:00

Merge pull request #84 from ScoreUnder/patch-1

Fix broken test
This commit is contained in:
horst3180 2015-06-26 13:15:22 +02:00
commit f05f23f9ba

View File

@ -9,11 +9,11 @@ AC_DEFUN([ARC_ENABLE], [
)], )],
[ENABLE_$1="$enableval"], [ENABLE_$1="$enableval"],
[AS_IF( [AS_IF(
[test "x$4" == "xdisable"], [test "x$4" = "xdisable"],
[ENABLE_$1="yes"], [ENABLE_$1="yes"],
[ENABLE_$1="no"] [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]) AC_SUBST([ENABLE_$1])
]) ])