summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOneric <oneric@oneric.stub>2020-11-06 16:01:45 +0100
committerOneric <oneric@oneric.stub>2020-11-13 23:55:33 +0100
commit7a853255bb5083c9c6ab31a29f215875dc8d8251 (patch)
treecd21e4459c353412ea8445ceeb2774726b7ee380
parent5c309768cb4e55172f0609e931f0f481d7518c60 (diff)
downloadlibass-7a853255bb5083c9c6ab31a29f215875dc8d8251.tar.bz2
libass-7a853255bb5083c9c6ab31a29f215875dc8d8251.tar.xz
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.
-rw-r--r--configure.ac4
1 files 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.