diff options
author | Matthew Waters <matthew@centricular.com> | 2019-03-15 00:33:18 +1100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-03-18 03:23:19 +0530 |
commit | b574441dec7fdfced9978487794dfd034acc0209 (patch) | |
tree | 86f4f6bef2e3dd0c239a327dfec5d1d2e3529544 /recipes/ffmpeg.recipe | |
parent | 06d40b1529f49c41473f77361bfb95d648a6b7f7 (diff) |
build: Convert configure to async functions
This way we can run multiple of them at the same time.
Initial patch by Nirbheek Chauhan
Diffstat (limited to 'recipes/ffmpeg.recipe')
-rw-r--r-- | recipes/ffmpeg.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/ffmpeg.recipe b/recipes/ffmpeg.recipe index 45679f51..d0bdfb81 100644 --- a/recipes/ffmpeg.recipe +++ b/recipes/ffmpeg.recipe @@ -94,8 +94,8 @@ class Recipe(recipe.Recipe): if self.config.platform == Platform.WINDOWS: self.make = 'make ' - def configure(self): - super(recipe.Recipe, self).configure() + async def configure(self): + await super(recipe.Recipe, self).configure() libav_path = self.build_dir if self.config.target_platform == Platform.WINDOWS: # XXX: --windres option doesn't exist, despite --help listing it |