diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-19 09:12:59 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-19 09:12:59 +0200 |
commit | 4d2151d160c34e7bfca0bae0f44c5eab21e6d401 (patch) | |
tree | 3f617a273692764e6616469dab06de3a36bc7ef8 /lib/depends.c | |
parent | 20bfd34975b7c4af9cce95167a227e9f9fe58316 (diff) | |
download | librpm-tizen-4d2151d160c34e7bfca0bae0f44c5eab21e6d401.tar.gz librpm-tizen-4d2151d160c34e7bfca0bae0f44c5eab21e6d401.tar.bz2 librpm-tizen-4d2151d160c34e7bfca0bae0f44c5eab21e6d401.zip |
Ordering fix (don't use RPMSENSE_PREREQ) from Pascal Rigaux
Diffstat (limited to 'lib/depends.c')
-rw-r--r-- | lib/depends.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/depends.c b/lib/depends.c index a1d20fa5f..254138a05 100644 --- a/lib/depends.c +++ b/lib/depends.c @@ -871,7 +871,7 @@ zapRelation(rpmte q, rpmte p, /* * Attempt to unravel a dependency loop by eliminating Requires's. */ - if (zap && !(Flags & RPMSENSE_PREREQ)) { + if (zap && !(isErasePreReq(Flags) || isInstallPreReq(Flags))) { rpmlog(msglvl, _("removing %s \"%s\" from tsort relations.\n"), (rpmteNEVRA(p) ? rpmteNEVRA(p) : "???"), dp); |