diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-08-22 16:14:42 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-08-22 16:14:42 +0200 |
commit | cb3fba86336ec2f4355452fa784c42bd84c5fde8 (patch) | |
tree | c7412e628955b0dd74e45f591aea442a408b1e61 /recipes | |
parent | 6771f062ce62b555f86dada726a9369d30652db7 (diff) |
igst-plugins-bad: print an error if dshow plugins can't be built
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gst-plugins-bad.recipe | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/gst-plugins-bad.recipe b/recipes/gst-plugins-bad.recipe index f81b4374..9f14dcf1 100644 --- a/recipes/gst-plugins-bad.recipe +++ b/recipes/gst-plugins-bad.recipe @@ -155,4 +155,8 @@ class Recipe(recipe.Recipe): root = self.prefix.rsplit('/', 1)[0] msbuild = MSBuild(solution, self.config.target_arch, GSTREAMER_SDK_ROOT=root) - msbuild.build() + try: + msbuild.build() + except Exception, e: + m.error("The Direct Show plugins will not be built") + m.error(e) |