Revert "openblas: do not build tests when installing (#38591)" (#38662)

This reverts commit 51c75c6da3.
This commit is contained in:
Harmen Stoppels 2023-07-02 04:02:39 +02:00 committed by GitHub
parent a864108bc1
commit cc74729115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -463,9 +463,7 @@ def libs(self):
@property
def build_targets(self):
# Do not build tests: see #38591
# And note that "shared" is allowed (but ignored) when ~shared
return ["-s"] + self.make_defs + ["libs", "netlib", "shared"]
return ["-s"] + self.make_defs + ["all"]
@run_after("build")
@on_package_attributes(run_tests=True)