diff options
author | Nigel Kukard <nkukard@lbsd.net> | 2009-12-25 10:29:22 +0000 |
---|---|---|
committer | Nigel Kukard <nkukard@lbsd.net> | 2009-12-25 10:29:22 +0000 |
commit | f16a9799b65214ffe1b07372676386e31ad51801 (patch) | |
tree | 623250fb62f9e58c5f1f7306965c944e6870172e /package/rpm/rpm-5.2.0_depends-fix.patch | |
parent | 9400c73582326c543fae82120af3904836145655 (diff) | |
download | buildroot-novena-f16a9799b65214ffe1b07372676386e31ad51801.tar.gz buildroot-novena-f16a9799b65214ffe1b07372676386e31ad51801.zip |
Bumped rpm
Diffstat (limited to 'package/rpm/rpm-5.2.0_depends-fix.patch')
-rw-r--r-- | package/rpm/rpm-5.2.0_depends-fix.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/rpm/rpm-5.2.0_depends-fix.patch b/package/rpm/rpm-5.2.0_depends-fix.patch new file mode 100644 index 000000000..4a9277576 --- /dev/null +++ b/package/rpm/rpm-5.2.0_depends-fix.patch @@ -0,0 +1,19 @@ +Bugfix included upstream + +diff -u --new-file --recursive rpm-5.2.0_vanilla/lib/depends.c rpm-5.2.0_depends-fix/lib/depends.c +--- rpm-5.2.0_vanilla/lib/depends.c 2009-05-23 01:23:46.000000000 +0000 ++++ rpm-5.2.0_depends-fix/lib/depends.c 2009-09-22 06:33:37.950783501 +0000 +@@ -2371,11 +2371,11 @@ + + memset(selected, 0, sizeof(*selected) * ts->orderCount); + +- if ((requires = rpmteDS(p, RPMTAG_REQUIRENAME)) != NULL) { +- + /* Avoid narcisstic relations. */ + selected[rpmtsiOc(pi)] = 1; + ++ if ((requires = rpmteDS(p, RPMTAG_REQUIRENAME)) != NULL) { ++ + /* T2. Next "q <- p" relation. */ + + /* First, do pre-requisites. */ |