mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-02 01:18:26 +03:00
spec: correct condition
Test needs to make sure that it's either <RHX or <FXX. However they are set to 0 when on different system. So use '&&'.
This commit is contained in:
parent
b885355e76
commit
77ff83f784
@ -92,13 +92,13 @@
|
||||
|
||||
##############################################################
|
||||
|
||||
%if %{rhel} < 7 || %{fedora} < 25
|
||||
%if %{rhel} < 7 && %{fedora} < 25
|
||||
%global enable_dmfilemapd 0
|
||||
%endif
|
||||
|
||||
##############################################################
|
||||
|
||||
%if %{rhel} < 8 || %{fedora} < 23
|
||||
%if %{rhel} < 8 && %{fedora} < 23
|
||||
%global enable_dbusd 0
|
||||
%endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user