CrayPE fix for unifyfs (#23498)

When building with CCE, do not use the -Werror flag
This commit is contained in:
lukebroskop 2021-05-10 16:02:30 -05:00 committed by GitHub
parent 50eec40232
commit e58d07a819
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,3 +110,8 @@ def hdf5_compiler_path(name):
def autoreconf(self, spec, prefix): def autoreconf(self, spec, prefix):
bash = which('bash') bash = which('bash')
bash('./autogen.sh') bash('./autogen.sh')
@when('%cce@11.0.3:')
def patch(self):
filter_file('-Werror', '', 'client/src/Makefile.in')
filter_file('-Werror', '', 'client/src/Makefile.am')