Disable parallel builds in groff and gosam-contrib (#26730)

Work around to #26726 and #26714
This commit is contained in:
Joseph Wang
2021-10-15 13:20:18 +08:00
committed by GitHub
parent 2bc0ea70ed
commit 0749d94ad3
2 changed files with 5 additions and 1 deletions

View File

@@ -40,3 +40,7 @@ def configure_args(self):
args += self.enable_or_disable('libs')
return args
@property
def parallel(self):
return False

View File

@@ -58,7 +58,7 @@ class Groff(AutotoolsPackage, GNUMirrorPackage):
@property
def parallel(self):
return self.spec.satisfies('@1.22.4')
return False
@classmethod
def determine_version(cls, exe):