GCC 10 workaround needed for RHEL > 8 as well

This commit is contained in:
Orion Poplawski 2020-07-11 18:22:01 -06:00
parent ca49a5638b
commit 71d623dbfa
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ cd build-static
# Java requires shared libraries, fortran requires static
# Temporary workaround for compiling on GCC-10
%if (0%{?fedora} && 0%{?fedora} > 31) || (0%{?rhel} && 0%{?rhel} > 8)
%if 0%{?fedora} > 31 || 0%{?rhel} > 8
export FCFLAGS="%{build_fflags} -fallow-argument-mismatch"
export FFLAGS="%{build_fflags} -fallow-argument-mismatch"
%endif