util-linux-uuid: Fix icc build issue (#31312)

This commit is contained in:
Barry Rountree 2022-07-04 07:11:35 -07:00 committed by GitHub
parent 2eddf8a78d
commit ac5fd8fa35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,4 +46,7 @@ def configure_args(self):
'--enable-libuuid',
'--disable-bash-completion',
]
# Fixes #31123.
if self.spec.satisfies('%intel'):
config_args.append('CFLAGS=-restrict')
return config_args