- ugh, braindamaged reversed condition in the font provide extractor "fix"
This commit is contained in:
parent
cc06306cbe
commit
0a9294bf7f
@ -19,7 +19,7 @@ index 8638680..594851d 100755
|
|||||||
fcquery=/usr/bin/fc-query
|
fcquery=/usr/bin/fc-query
|
||||||
|
|
||||||
-[ -x $fcquery ] || exit 0
|
-[ -x $fcquery ] || exit 0
|
||||||
+if [ -x $fcquery ]; then
|
+if [ ! -x $fcquery ]; then
|
||||||
+ cat > /dev/null
|
+ cat > /dev/null
|
||||||
+ exit 0
|
+ exit 0
|
||||||
+fi
|
+fi
|
||||||
|
5
rpm.spec
5
rpm.spec
@ -21,7 +21,7 @@
|
|||||||
Summary: The RPM package management system
|
Summary: The RPM package management system
|
||||||
Name: rpm
|
Name: rpm
|
||||||
Version: %{rpmver}
|
Version: %{rpmver}
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Url: http://www.rpm.org/
|
Url: http://www.rpm.org/
|
||||||
Source0: http://rpm.org/releases/rpm-4.8.x/%{name}-%{srcver}.tar.bz2
|
Source0: http://rpm.org/releases/rpm-4.8.x/%{name}-%{srcver}.tar.bz2
|
||||||
@ -414,6 +414,9 @@ exit 0
|
|||||||
%doc doc/librpm/html/*
|
%doc doc/librpm/html/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 02 2010 Panu Matilainen <pmatilai@redhat.com> - 4.8.1-3
|
||||||
|
- ugh, reversed condition braindamage in the font provide extractor "fix"
|
||||||
|
|
||||||
* Wed Jun 30 2010 Panu Matilainen <pmatilai@redhat.com> - 4.8.1-2
|
* Wed Jun 30 2010 Panu Matilainen <pmatilai@redhat.com> - 4.8.1-2
|
||||||
- fix a potential getOutputFrom() error from font provide extraction
|
- fix a potential getOutputFrom() error from font provide extraction
|
||||||
- debug-friendlier message to aid finding other similar cases (#565223)
|
- debug-friendlier message to aid finding other similar cases (#565223)
|
||||||
|
Loading…
Reference in New Issue
Block a user