diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-09-05 14:12:08 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-09-07 20:42:19 +0530 |
commit | 8879bf4bf48cbd1c7e668bc5ce5532cdebca2123 (patch) | |
tree | 458f0f65207d9a89a597a78b1d22cab3288749fe /recipes/proxy-libintl.recipe | |
parent | 4e70a8cf5835547486dd3b34ac161795a1aab66b (diff) |
proxy-libintl.recipe: Use the soversion in the la file
Diffstat (limited to 'recipes/proxy-libintl.recipe')
-rw-r--r-- | recipes/proxy-libintl.recipe | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes/proxy-libintl.recipe b/recipes/proxy-libintl.recipe index 7ec3dfba..96e77083 100644 --- a/recipes/proxy-libintl.recipe +++ b/recipes/proxy-libintl.recipe @@ -1,5 +1,4 @@ # -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python -import shutil from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): @@ -19,6 +18,6 @@ class Recipe(recipe.Recipe): ] def post_install(self): - libtool_la = LibtoolLibrary('intl', None, None, None, self.config.libdir, + libtool_la = LibtoolLibrary('intl', 8, None, None, self.config.libdir, self.config.target_platform) libtool_la.save() |