From 2b7456eb87acc0a5448318693d08a83ca1b24418 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sun, 17 Mar 2019 02:54:13 +0530 Subject: libusrsctp.recipe: Do not print to stdout during extract Use shell.log instead, because print() now goes to the actual stdout --- recipes/libusrsctp.recipe | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipes/libusrsctp.recipe b/recipes/libusrsctp.recipe index e5383461..b7bea86b 100644 --- a/recipes/libusrsctp.recipe +++ b/recipes/libusrsctp.recipe @@ -43,10 +43,9 @@ class Recipe(recipe.Recipe): patches = ['libusrsctp/0001-auto-Fix-build-for-mingw.patch'] def extract(self): - super(recipe.Recipe, self).extract() - + super().extract() for f in ['NEWS', 'README', 'AUTHORS', 'ChangeLog']: - print (os.path.join(self.build_dir, f)) + shell.log(os.path.join(self.build_dir, f), self.logfile) shell.touch(os.path.join(self.build_dir, f), True) #os.mkdir(os.path.join(self.build_dir, 'm4')) -- cgit v1.2.3