Sophie

Sophie

distrib > Mageia > 1 > i586 > media > core-updates-src > by-pkgid > 2d27fe3dff73e21c1aac97aebe0dff40 > files > 11

rpm-4.8.1-10.5.mga1.src.rpm

From dea9eeabb17dbe40a655a7fa9ab4cdde9e23d5d3 Mon Sep 17 00:00:00 2001
From: unknown author <cooker@mandrivalinux.org>
Date: Mon, 5 Jan 2009 13:29:57 +0000
Subject: [PATCH 06/36] bb shortcircuit

---
 rpmqv.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/rpmqv.c b/rpmqv.c
index d10132d..f1180b2 100644
--- a/rpmqv.c
+++ b/rpmqv.c
@@ -664,14 +664,16 @@ int main(int argc, char *argv[])
 	case 'b':
 	    ba->buildAmount |= RPMBUILD_PACKAGEBINARY;
 	    ba->buildAmount |= RPMBUILD_CLEAN;
+	    if (ba->shortCircuit)
+		break;
 	case 'i':
 	    ba->buildAmount |= RPMBUILD_INSTALL;
 	    ba->buildAmount |= RPMBUILD_CHECK;
-	    if ((ba->buildChar == 'i') && ba->shortCircuit)
+	    if (/* (ba->buildChar == 'i') && */ ba->shortCircuit)
 		break;
 	case 'c':
 	    ba->buildAmount |= RPMBUILD_BUILD;
-	    if ((ba->buildChar == 'c') && ba->shortCircuit)
+	    if (/* (ba->buildChar == 'c') && */ ba->shortCircuit)
 		break;
 	case 'p':
 	    ba->buildAmount |= RPMBUILD_PREP;
-- 
1.6.4.4