Compare commits

...

2 Commits

Author SHA1 Message Date
Eduardo Habkost fa3943163b more fixes
Signed-off-by: Eduardo Habkost <ehabkost@raisama.net>
2012-03-29 12:34:34 -03:00
Eduardo Habkost 3ff221e336 fix build
Oops, I set exclusive_x86_64 by default. It was supposed to be
_disabled_ by default.

Signed-off-by: Eduardo Habkost <ehabkost@raisama.net>
2012-03-29 12:30:04 -03:00
1 changed files with 8 additions and 7 deletions

View File

@ -20,17 +20,18 @@
#
# Enabled by default, except on RHEL.
%if 0%{?rhel}
# RHEL-specific defaults:
%bcond_without exclusive_x86_64
%bcond_with rbd
%bcond_with fdt
%bcond_with x86only # disabled
%bcond_without exclusive_x86_64 # enabled
%bcond_with rbd # disabled
%bcond_with fdt # disabled
%else
# General defaults:
%bcond_without exclusive_x86_64
%bcond_without rbd
%bcond_without fdt
%bcond_with x86only # disabled
%bcond_with exclusive_x86_64 # disabled
%bcond_without rbd # enabled
%bcond_without fdt # enabled
%endif