diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-02-09 15:04:07 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-02-09 15:06:33 +0100 |
commit | de8e899e10614ccba9bb8399032ba921c85558b5 (patch) | |
tree | 8fd91a2a55cc4e3f28362b83628fe7c6c37b9ade /recipes/librtmp | |
parent | 8c12b6008dee22fb535d02b7a132bf2c03808ce2 (diff) |
librtmp: Make sure to add libgcrypt to dependency_libs
Diffstat (limited to 'recipes/librtmp')
-rw-r--r-- | recipes/librtmp/librtmp.recipe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/librtmp/librtmp.recipe b/recipes/librtmp/librtmp.recipe index 90b4648b..70708106 100644 --- a/recipes/librtmp/librtmp.recipe +++ b/recipes/librtmp/librtmp.recipe @@ -28,6 +28,7 @@ class Recipe(recipe.Recipe): self.make_install = 'make install SYS=%s prefix=$CERBERO_PREFIX CRYPTO=GNUTLS' % (system) def post_install(self): + deps = ['gcrypt'] libtool_la = LibtoolLibrary('rtmp', 0, None, None, self.config.libdir, - self.config.target_platform) + self.config.target_platform, deps) libtool_la.save() |