From b05160a94c93693664a0a18977e848cc4dfa9d7a Mon Sep 17 00:00:00 2001 From: Oneric Date: Fri, 6 Nov 2020 16:01:45 +0100 Subject: configure: Fix --enable-large-tiles Due to a misplaced comma this config switch was broken. A follow-up commit will change our autoconf-style in a way, that should make it harder for errors like this one to slip in. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 66a8fe3..fb8bb33 100644 --- a/configure.ac +++ b/configure.ac @@ -282,8 +282,8 @@ AM_COND_IF([ASM], ) AM_COND_IF([ENABLE_LARGE_TILES], - [AC_DEFINE(CONFIG_LARGE_TILES, 1, [use large tiles])] - [AC_DEFINE(CONFIG_LARGE_TILES, 0, [use small tiles])], + [AC_DEFINE(CONFIG_LARGE_TILES, 1, [use large tiles])], + [AC_DEFINE(CONFIG_LARGE_TILES, 0, [use small tiles])] ) ## Setup output beautifier. -- cgit v1.2.3