diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-02-24 10:10:25 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-02-24 10:10:25 +0100 |
commit | 792269c76cf49b1d0bd199b2a440c4938b307250 (patch) | |
tree | b45d157ba677e4890b04364c2799e0ac27ae3292 /recipes/gettext.recipe | |
parent | 7f20b2b8f05806517c1981ecfc9516330736c301 (diff) |
gettext: Properly append new configure options with a leading space
Diffstat (limited to 'recipes/gettext.recipe')
-rw-r--r-- | recipes/gettext.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gettext.recipe b/recipes/gettext.recipe index ba4bcf42..de4cf20a 100644 --- a/recipes/gettext.recipe +++ b/recipes/gettext.recipe @@ -17,7 +17,7 @@ class Recipe(recipe.Recipe): self.make = 'cd %s && make' % intl_path self.make_install = 'cd %s && make PACKAGE=gettext-tools install' % intl_path if self.config.target_platform == Platform.WINDOWS: - self.configure_options += '--enable-threads=win32' + self.configure_options += ' --enable-threads=win32' elif self.config.target_platform == Platform.ANDROID: self.autoreconf = True self.autoreconf_sh = 'cd .. && ./autogen.sh --quick --skip-gnulib' |