rpms/rpm/devel rpm-4.8.1-eat-stdin.patch, 1.1, 1.2 rpm.spec, 1.402, 1.403

Panu Matilainen pmatilai at fedoraproject.org
Fri Jul 2 10:22:11 UTC 2010


Author: pmatilai

Update of /cvs/pkgs/rpms/rpm/devel
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv21902

Modified Files:
	rpm-4.8.1-eat-stdin.patch rpm.spec 
Log Message:
- ugh, braindamaged reversed condition in the font provide extractor "fix"


rpm-4.8.1-eat-stdin.patch:
 fontconfig.prov |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Index: rpm-4.8.1-eat-stdin.patch
===================================================================
RCS file: /cvs/pkgs/rpms/rpm/devel/rpm-4.8.1-eat-stdin.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- rpm-4.8.1-eat-stdin.patch	30 Jun 2010 09:44:37 -0000	1.1
+++ rpm-4.8.1-eat-stdin.patch	2 Jul 2010 10:22:11 -0000	1.2
@@ -19,7 +19,7 @@ index 8638680..594851d 100755
  fcquery=/usr/bin/fc-query
  
 -[ -x $fcquery ] || exit 0
-+if [ -x $fcquery ]; then
++if [ ! -x $fcquery ]; then
 +    cat > /dev/null
 +    exit 0
 +fi


Index: rpm.spec
===================================================================
RCS file: /cvs/pkgs/rpms/rpm/devel/rpm.spec,v
retrieving revision 1.402
retrieving revision 1.403
diff -u -p -r1.402 -r1.403
--- rpm.spec	30 Jun 2010 09:44:37 -0000	1.402
+++ rpm.spec	2 Jul 2010 10:22:11 -0000	1.403
@@ -21,7 +21,7 @@
 Summary: The RPM package management system
 Name: rpm
 Version: %{rpmver}
-Release: 2%{?dist}
+Release: 3%{?dist}
 Group: System Environment/Base
 Url: http://www.rpm.org/
 Source0: http://rpm.org/releases/rpm-4.8.x/%{name}-%{srcver}.tar.bz2
@@ -414,6 +414,9 @@ exit 0
 %doc doc/librpm/html/*
 
 %changelog
+* Fri Jul 02 2010 Panu Matilainen <pmatilai at redhat.com> - 4.8.1-3
+- ugh, reversed condition braindamage in the font provide extractor "fix"
+
 * Wed Jun 30 2010 Panu Matilainen <pmatilai at redhat.com> - 4.8.1-2
 - fix a potential getOutputFrom() error from font provide extraction
 - debug-friendlier message to aid finding other similar cases (#565223)



More information about the scm-commits mailing list