27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
Also test architecture in "refresh" test when not colored. This allows
|
|
updates to different architecture possible again.
|
|
|
|
Index: lib/psm.c
|
|
===================================================================
|
|
--- lib/psm.c.orig
|
|
+++ lib/psm.c
|
|
@@ -1447,15 +1447,16 @@ rpmRC rpmpsmStage(rpmpsm psm, pkgStage s
|
|
|
|
assert(psm->mi == NULL);
|
|
psm->mi = rpmtsInitIterator(ts, RPMTAG_NAME, rpmteN(psm->te), 0);
|
|
+ /* this must match rpmNameVersionCompare in depends.c */
|
|
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_EPOCH, RPMMIRE_STRCMP,
|
|
rpmteE(psm->te));
|
|
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_VERSION, RPMMIRE_STRCMP,
|
|
rpmteV(psm->te));
|
|
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_RELEASE, RPMMIRE_STRCMP,
|
|
rpmteR(psm->te));
|
|
- if (tscolor) {
|
|
- xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_ARCH, RPMMIRE_STRCMP,
|
|
+ xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_ARCH, RPMMIRE_STRCMP,
|
|
rpmteA(psm->te));
|
|
+ if (tscolor) {
|
|
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_OS, RPMMIRE_STRCMP,
|
|
rpmteO(psm->te));
|
|
}
|