diff options
author | Harshavardhana <harsha@zresearch.com> | 2009-04-24 05:47:39 -0700 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-04-30 17:25:43 +0530 |
commit | 946436dc17f7df47608b9a64aa11b77d7caf309d (patch) | |
tree | 212d0d8b088598350743b322e8f0818591ce33db /glusterfs.spec.in | |
parent | ce6fa580af849b03c4641baf77bf07c590be934a (diff) |
Fix a conditional during dependency check
Conditional was wrong and dependency check would fail.
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'glusterfs.spec.in')
-rw-r--r-- | glusterfs.spec.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glusterfs.spec.in b/glusterfs.spec.in index 9b7e96e05..609c0e64a 100644 --- a/glusterfs.spec.in +++ b/glusterfs.spec.in @@ -54,8 +54,8 @@ Requires(postun): /sbin/service %{!?_without_bdb:BuildRequires: db4-devel} %{!?_without_client:BuildRequires: fuse-devel} -%if 0%{!?_without_modglfs} -%if 0%{!?_without_apxs_default} +%if 0%{!?_without_modglfs:1} +%if 0%{!?_without_apxs_default:1} BuildRequires: httpd-devel >= 2.2 %endif %endif |