diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2013-12-03 18:03:11 -0500 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2013-12-15 18:42:46 -0500 |
commit | f9c83d3e0ec5d086fca6495a7e9aac7fbae1f9ca (patch) | |
tree | 7c2640a744dc1ea2160373b6a282b32cb73b4cdd /configure.ac | |
parent | 922e4973475db9420c8de9e3f634271738ce920f (diff) | |
download | pango-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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
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" |