rpms/curl/F-10 curl.spec,1.89,1.90

Kamil Dudka kdudka at fedoraproject.org
Wed Jun 10 13:21:43 UTC 2009


Author: kdudka

Update of /cvs/extras/rpms/curl/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31483

Modified Files:
	curl.spec 
Log Message:
avoid unguarded comparison in the spec file (#504857)


Index: curl.spec
===================================================================
RCS file: /cvs/extras/rpms/curl/F-10/curl.spec,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -p -r1.89 -r1.90
--- curl.spec	11 May 2009 08:38:15 -0000	1.89
+++ curl.spec	10 Jun 2009 13:21:13 -0000	1.90
@@ -1,7 +1,7 @@
 Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
 Name: curl
 Version: 7.19.4
-Release: 5%{?dist}
+Release: 6%{?dist}
 License: MIT
 Group: Applications/Internet
 Source: http://curl.haxx.se/download/%{name}-%{version}.tar.bz2
@@ -92,7 +92,7 @@ install -m 644 docs/libcurl/libcurl.m4 $
 %define _curlbuild32_h curlbuild-32.h
 %define _curlbuild64_h curlbuild-64.h
 
-%if %{__isa_bits} == 64
+%if 0%{?__isa_bits} == 64
 %define _curlbuild_h %{_curlbuild64_h}
 %else
 %define _curlbuild_h %{_curlbuild32_h}
@@ -146,6 +146,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/aclocal/libcurl.m4
 
 %changelog
+* Wed Jun 10 2009 Kamil Dudka <kdudka at redhat.com> 7.19.4-6
+- avoid unguarded comparison in the spec file, thanks to R P Herrold (#504857)
+
 * Mon May 11 2009 Kamil Dudka <kdudka at redhat.com> 7.19.4-5
 - fix infinite loop while loading a private key, thanks to Michael Cronenworth
   (#453612)




More information about the fedora-extras-commits mailing list