Change %%{__isa_bits} to %%{?__isa_bits}

This is possibly why builds are failing in SRPM generation
This commit is contained in:
Benjamin A. Beasley 2023-02-22 08:13:57 -05:00
parent e6870bdc24
commit 592c818131
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ sed -e "s|^\(CXXFLAGS = \).*|\1%{optflags} $RPM_LD_FLAGS|" \
%build
%set_build_flags
%if %{__isa_bits} == 32
%if %{?__isa_bits} == 32
# Reduce the debuginfo level to avoid virtual memory exhaustion
CXXFLAGS="${CXXFLAGS-} -g1"
%endif