summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Orton <jorton@redhat.com>2017-09-22 08:06:39 +0100
committerJoe Orton <jorton@redhat.com>2017-09-22 08:06:39 +0100
commitc094ba48271609ad5329c2bd04c276b011a639c5 (patch)
tree4459722ceb4c94532e047ed843ca0846b75ff469
parent5ec11c5a4f6d836c41d6b4e4928531723dc87139 (diff)
downloadhttpd-c094ba48271609ad5329c2bd04c276b011a639c5.tar.gz
httpd-c094ba48271609ad5329c2bd04c276b011a639c5.tar.xz
httpd-c094ba48271609ad5329c2bd04c276b011a639c5.zip
Fix conditional.
-rw-r--r--httpd.spec6
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd.spec b/httpd.spec
index b887b03..c550a28 100644
--- a/httpd.spec
+++ b/httpd.spec
@@ -4,10 +4,10 @@
%define mmn 20120211
%define mmnisa %{mmn}%{__isa_name}%{__isa_bits}
%define vstring %(source /etc/os-release; echo ${REDHAT_SUPPORT_PRODUCT})
-%if 0%{?fedora} < 27 || %{?rhel} <= 7
-%global mpm prefork
-%else
+%if 0%{?fedora} > 26 || 0%{?rhel} > 7
%global mpm event
+%else
+%global mpm prefork
%endif
Summary: Apache HTTP Server