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/cdparanoia.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/cdparanoia.recipe')
-rw-r--r-- | recipes/cdparanoia.recipe | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/cdparanoia.recipe b/recipes/cdparanoia.recipe index b8c35201..67ba4739 100644 --- a/recipes/cdparanoia.recipe +++ b/recipes/cdparanoia.recipe @@ -39,3 +39,4 @@ class Recipe(recipe.Recipe): if os.path.isfile(f) and not os.path.islink(f) and \ fnmatch(f, '*.so.*'): os.chmod(f, 0o755) + super().post_install() |