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/pango.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/pango.recipe')
-rw-r--r-- | recipes/pango.recipe | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/pango.recipe b/recipes/pango.recipe index 66628baf..c1aa0712 100644 --- a/recipes/pango.recipe +++ b/recipes/pango.recipe @@ -42,3 +42,4 @@ class Recipe(recipe.Recipe): self.config.target_platform, deps=['pango-1.0', 'harfbuzz', 'fontconfig', 'expat', 'freetype', 'bz2', 'png16']).save() LibtoolLibrary('pangocairo-1.0', None, None, None, self.config.libdir, self.config.target_platform, deps=['pango-1.0', 'cairo', 'pixman-1', 'pangoft2-1.0']).save() + super().post_install() |