fix conditional comparison

epel9
Tom Callaway 17 years ago
parent 620d6df835
commit a2a5dc2b03

@ -2,7 +2,7 @@ Summary: A friendly interactive shell
Name: fish Name: fish
Version: 1.23.0 Version: 1.23.0
Release: 4%{?dist} Release: 5%{?dist}
License: GPLv2 License: GPLv2
Group: System Environment/Shells Group: System Environment/Shells
@ -16,15 +16,15 @@ BuildRequires: autoconf
# Locate correct build time-dependencies for providing X headers # Locate correct build time-dependencies for providing X headers
%if "%fedora" >= "5" %if 0%{?fedora} >= 5
# Modern Fedora version, has modular X.org # Modern Fedora version, has modular X.org
BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel
%endif %endif
%if "%fedora" < "5" %if 0%{?fedora} < 5
%if "%fedora" >= "3" %if 0%{?fedora} >= 3
# Semi-old Fedora version, has non-modular X.org # Semi-old Fedora version, has non-modular X.org
BuildRequires: xorg-x11-devel BuildRequires: xorg-x11-devel
@ -33,7 +33,7 @@ BuildRequires: xorg-x11-devel
%endif %endif
%if 0%{?fedora} %if 0%{?fedora}
%if "%fedora" < "3" %if 0%{?fedora} < 3
# Ancient Fedora version, has XFree86 # Ancient Fedora version, has XFree86
BuildRequires: XFree86-devel BuildRequires: XFree86-devel
@ -174,6 +174,9 @@ fi
%changelog %changelog
* Mon Jul 07 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.23.0-5
- fix conditional comparison
* Fri Jul 06 2008 Oliver Falk <oliver@linux-kernel.at> - 1.23.0-4 * Fri Jul 06 2008 Oliver Falk <oliver@linux-kernel.at> - 1.23.0-4
- Rebuild - Rebuild

Loading…
Cancel
Save