diff options
author | Matthew Waters <matthew@centricular.com> | 2018-08-27 17:03:08 +1000 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2018-08-28 16:37:06 +1000 |
commit | 772a21a8cb98adcb29b94599d06541a9cc2d5ebb (patch) | |
tree | be29e920abab806fe5375c2d25cc3af8ff9805c9 /recipes/glib.recipe | |
parent | b31d86e6ec3ed7ed1527ba9dbba81e8f8c74bb20 (diff) |
glib: also generate a .la file for gthread
Fixes android application building/running missing reference to
libgthread-2.0.so
Diffstat (limited to 'recipes/glib.recipe')
-rw-r--r-- | recipes/glib.recipe | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/glib.recipe b/recipes/glib.recipe index c75b8725..9254dc7c 100644 --- a/recipes/glib.recipe +++ b/recipes/glib.recipe @@ -238,6 +238,9 @@ class Recipe(recipe.Recipe): LibtoolLibrary('gmodule-2.0', major, minor, micro, self.config.libdir, self.config.target_platform, deps=['glib-2.0']).save() + LibtoolLibrary('gthread-2.0', major, minor, micro, + self.config.libdir, self.config.target_platform, + deps=['glib-2.0']).save() LibtoolLibrary('gio-2.0', major, minor, micro, self.config.libdir, self.config.target_platform, deps=['gobject-2.0', 'gmodule-2.0', 'z']).save() |