netlib-scalapack %cce: add -hnopattern to fflags (#33422)
This commit is contained in:
parent
dc110db65d
commit
8e2696172b
@ -45,6 +45,13 @@ class ScalapackBase(CMakePackage):
|
||||
when="@2.2.0",
|
||||
)
|
||||
|
||||
def flag_handler(self, name, flags):
|
||||
iflags = []
|
||||
if name == "fflags":
|
||||
if self.spec.satisfies("%cce"):
|
||||
iflags.append("-hnopattern")
|
||||
return (iflags, None, None)
|
||||
|
||||
@property
|
||||
def libs(self):
|
||||
# Note that the default will be to search
|
||||
|
Loading…
Reference in New Issue
Block a user