diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-03-17 02:54:13 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-03-18 03:31:44 +0530 |
commit | 2b7456eb87acc0a5448318693d08a83ca1b24418 (patch) | |
tree | 30979d81fc45a1b7056f3e09e3dae2202810dbbb | |
parent | daf72027f72800a713f674230231976a38ae941e (diff) |
libusrsctp.recipe: Do not print to stdout during extract
Use shell.log instead, because print() now goes to the actual stdout
-rw-r--r-- | recipes/libusrsctp.recipe | 5 |
1 files 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')) |