From b49881d71d5c2653b26a34f852576263713bde95 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Thu, 30 Jul 2020 21:39:48 +0200 Subject: rpm: Fix typo in rhel 6 condition check Signed-off-by: David Sommerseth --- rpm/SPECS/logactio.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpm/SPECS/logactio.spec b/rpm/SPECS/logactio.spec index 1274385..2e7d3eb 100644 --- a/rpm/SPECS/logactio.spec +++ b/rpm/SPECS/logactio.spec @@ -33,7 +33,7 @@ Requires(preun): chkconfig Requires(preun): initscripts %endif -%if 0%{rhel} <= 6 +%if 0%{?rhel} <= 6 BuildRequires: python-sphinx10 %else BuildRequires: python3-sphinx @@ -51,7 +51,7 @@ in Python and can easily be extended with specific actions. %build %py3_build pushd docs -%if 0%{rhel} > 6 +%if 0%{?rhel} > 6 make text man %else make text man SPHINXBUILD=sphinx-1.0-build -- cgit