openblas: do not build tests when installing (#38591)
* openblas: do not build tests when installing * Add note about building tests
This commit is contained in:
parent
c3f4822f92
commit
51c75c6da3
1 changed files with 3 additions and 1 deletions
|
@ -463,7 +463,9 @@ def libs(self):
|
|||
|
||||
@property
|
||||
def build_targets(self):
|
||||
return ["-s"] + self.make_defs + ["all"]
|
||||
# Do not build tests: see #38591
|
||||
# And note that "shared" is allowed (but ignored) when ~shared
|
||||
return ["-s"] + self.make_defs + ["libs", "netlib", "shared"]
|
||||
|
||||
@run_after("build")
|
||||
@on_package_attributes(run_tests=True)
|
||||
|
|
Loading…
Reference in a new issue