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:04:07 +0100 |
commit | ac41a50f4ecc06a03701c9203457de24a08ae644 (patch) | |
tree | d25e3506f872e951c1b86fdf5998479aa682ef41 | |
parent | 6166cd671539f70e68510e3f14e0178db5c4a712 (diff) |
librtmp: Make sure to add libgcrypt to dependency_libs
-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() |