Hi Daniel Think this change ``` %if 0%{?rhel} || 0%{?centos_ver} %if 0%{?rhel} > 6 || 0%{?centos_ver} > 6 BuildRequires: pkgconfig %endif %else BuildRequires: pkgconfig %endif ``` Is equal to ``` %if 0%{?rhel} %if 0%{?rhel} > 6 BuildRequires: pkgconfig %endif %else BuildRequires: pkgconfig %endif ``` And equal to ``` %if 0%{?rhel} > 6 BuildRequires: pkgconfig %else BuildRequires: pkgconfig %endif ``` As `pkgconfig` is present in all RPM supported dists think we can use ``` BuildRequires: pkgconfig ```
What you think?