- replace hard wired port numbers in the test suite
This commit is contained in:
parent
0d4bed8f48
commit
ab4974c767
10
curl.spec
10
curl.spec
@ -1,7 +1,7 @@
|
|||||||
Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
|
Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
|
||||||
Name: curl
|
Name: curl
|
||||||
Version: 7.19.7
|
Version: 7.19.7
|
||||||
Release: 7%{?dist}
|
Release: 8%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
Source: http://curl.haxx.se/download/%{name}-%{version}.tar.lzma
|
Source: http://curl.haxx.se/download/%{name}-%{version}.tar.lzma
|
||||||
@ -100,6 +100,9 @@ use cURL's capabilities internally.
|
|||||||
|
|
||||||
autoconf
|
autoconf
|
||||||
|
|
||||||
|
# replace hard wired port numbers in the test suite
|
||||||
|
sed -i s/899\\\([0-9]\\\)/%{?__isa_bits}9\\1/ tests/data/test*
|
||||||
|
|
||||||
# Convert docs to UTF-8
|
# Convert docs to UTF-8
|
||||||
for f in CHANGES README; do
|
for f in CHANGES README; do
|
||||||
iconv -f iso-8859-1 -t utf8 < ${f} > ${f}.utf8
|
iconv -f iso-8859-1 -t utf8 < ${f} > ${f}.utf8
|
||||||
@ -127,7 +130,7 @@ make %{?_smp_mflags}
|
|||||||
|
|
||||||
# use different port range for 32bit and 64bit build, thus make it possible
|
# use different port range for 32bit and 64bit build, thus make it possible
|
||||||
# to run both in parallel on the same machine
|
# to run both in parallel on the same machine
|
||||||
./runtests.pl -a -b89%{?__isa_bits} -p -v
|
./runtests.pl -a -b%{?__isa_bits}90 -p -v
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -186,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/aclocal/libcurl.m4
|
%{_datadir}/aclocal/libcurl.m4
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Dec 09 2009 Kamil Dudka <kdudka@redhat.com> 7.19.7-8
|
||||||
|
- replace hard wired port numbers in the test suite
|
||||||
|
|
||||||
* Wed Dec 09 2009 Kamil Dudka <kdudka@redhat.com> 7.19.7-7
|
* Wed Dec 09 2009 Kamil Dudka <kdudka@redhat.com> 7.19.7-7
|
||||||
- use different port numbers for 32bit and 64bit builds
|
- use different port numbers for 32bit and 64bit builds
|
||||||
- temporary workaround for #545779
|
- temporary workaround for #545779
|
||||||
|
Loading…
Reference in New Issue
Block a user