summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2013-07-23 08:53:28 +0200
committerSebastian Dröge <slomo@circular-chaos.org>2013-07-23 08:53:28 +0200
commite2a52bf1bef27823ec0dc2c22eb7e160f76804cf (patch)
tree770c6500dbf1b890de0cd1d6c3a966df45bf16f9 /recipes
parentad807656ecf9bb66cae7ac8de0391561004cbaba (diff)
parent59d03ca9c94a7ec445899414399cb297e8a054ce (diff)
Merge remote-tracking branch 'origin/master' into upstream-1.0
Diffstat (limited to 'recipes')
-rw-r--r--recipes/x264.recipe6
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes/x264.recipe b/recipes/x264.recipe
index a9973d4b..79e2f5f3 100644
--- a/recipes/x264.recipe
+++ b/recipes/x264.recipe
@@ -1,4 +1,5 @@
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
+from cerbero.tools.libtool import LibtoolLibrary
class Recipe(recipe.Recipe):
@@ -32,3 +33,8 @@ class Recipe(recipe.Recipe):
self.configure_options += ' --disable-asm'
if self.config.target_arch in [Architecture.ARM, Architecture.ARMv7]:
self.new_env = {'AS': os.environ.get('GAS', '')}
+
+ def post_install(self):
+ libtool_la = LibtoolLibrary('x264', 125, None, None, self.config.libdir,
+ self.config.target_platform)
+ libtool_la.save()