On Tue, 2022-09-27 at 13:18 +0200, Nicolas Chauvet wrote:
%ifarch x86_64 ppc64le aarch64
+%if ! 0%{?fedora} >= 37
%global _with_asdcp 1
%endif
+%endif
you need use parentheses
as you wrote is groupped
%if (! 0%{?fedora}) >=37
and is always false
you need parentheses like this:
%if ! (0%{?fedora} >=37 )
--
Sérgio M. B.