diff options
Diffstat (limited to 'recipes/libusrsctp.recipe')
-rw-r--r-- | recipes/libusrsctp.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/libusrsctp.recipe b/recipes/libusrsctp.recipe index 6b7656d6..22a0660c 100644 --- a/recipes/libusrsctp.recipe +++ b/recipes/libusrsctp.recipe @@ -46,8 +46,8 @@ class Recipe(recipe.Recipe): 'libusrsctp/0003-Fix-build-with-MinGW-and-the-ucrtbase-CRT.patch', ] - def extract(self): - super().extract() + async def extract(self): + await super().extract() for f in ['NEWS', 'README', 'AUTHORS', 'ChangeLog']: shell.log(os.path.join(self.build_dir, f), self.logfile) shell.touch(os.path.join(self.build_dir, f), True) |