diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-01-28 17:20:36 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2019-02-04 18:49:30 +0000 |
commit | 74ba4fd85aff872c2b62cd24a604c4729a5725f6 (patch) | |
tree | ceaf42be282801dbddae213d17d52a87f6df6fba /recipes/libvpx.recipe | |
parent | 24fa840854a56d67e0324a460db3bbea8928ec32 (diff) |
recipes: Ensure that post_install is always chained up
We already do some things in post_install, but we currently only do
this for gstreamer recipes, but that's overall a bit flaky. This will
allow us to do more things in post_install and make things consistent.
Diffstat (limited to 'recipes/libvpx.recipe')
-rw-r--r-- | recipes/libvpx.recipe | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/libvpx.recipe b/recipes/libvpx.recipe index ac17ee1f..a75536a3 100644 --- a/recipes/libvpx.recipe +++ b/recipes/libvpx.recipe @@ -143,3 +143,4 @@ class Recipe(recipe.Recipe): subdir = 'Win32' os.replace(os.path.join(self.config.prefix, 'lib', subdir, 'vpxmd.lib'), os.path.join(self.config.prefix, 'lib', 'vpx.lib')) + super().post_install() |