Hi @space88man Could you also replace `%{?centos_ver}` macro to `%{?rhel}`. *Example* ``` %if 0%{?centos_ver} == 7 && %{with openssl11} ``` To ``` %if 0%{?rhel} == 7 && %{with openssl11} ```
This will allow using the same approach for RHEL dist too.