summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2013-12-03 18:03:11 -0500
committerBehdad Esfahbod <behdad@behdad.org>2013-12-15 18:42:46 -0500
commitf9c83d3e0ec5d086fca6495a7e9aac7fbae1f9ca (patch)
tree7c2640a744dc1ea2160373b6a282b32cb73b4cdd
parent922e4973475db9420c8de9e3f634271738ce920f (diff)
downloadpango-f9c83d3e0ec5d086fca6495a7e9aac7fbae1f9ca.tar.gz
Fix build --withincluded-modules
According to Doug Felt: pango's configure dies with --with-included-modules=yes, because when have_libthai is true, thai_modules ends up being ",thai-lang", and all_modules (and included_modules) ends up containing ',,'. for module in $included_modules; ends up with module='' and the case $module falls back to default, which calls as_fn_error.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index fef470da..a4f73e70 100644
--- a/configure.ac
+++ b/configure.ac
@@ -494,7 +494,7 @@ indic_modules="indic-lang"
thai_modules=""
if $have_libthai ; then
- thai_modules="$thai_modules,thai-lang"
+ thai_modules="thai-lang"
fi
all_modules="$arabic_modules,$basic_modules,$indic_modules,$thai_modules"