diff options
-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() |