Add leading zero so it'll work when rhel not set.
When rhel is not set it will error out with "bad if". Add leading zero as per https://fedoraproject.org/wiki/Packaging:DistTag so it'll work on non-RHEL.
This commit is contained in:
parent
12abd67a6a
commit
04f4e8193c
|
@ -25,7 +25,7 @@
|
|||
|
||||
# Use build6x options for older RHEL builds
|
||||
# RHEL 7 and Fedora not yet supported
|
||||
%if %{?rhel} > 6
|
||||
%if 0%{?rhel} > 6
|
||||
%define build6x 0
|
||||
%else
|
||||
%define build6x 1
|
||||
|
|
Loading…
Reference in New Issue