[PATCH blivet] Use --whatprovides when querying for if all requirements are installed.

Chris Lumens clumens at redhat.com
Thu Sep 10 14:43:32 UTC 2015


There's no package named pygobject3-base.  It's actually named
python-gobejct-base, but it provides pygobject3-base.  Possible fixes
are either changing the requires or just looking harder.
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index f3e2ec4..21164bc 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ check-requires:
 	@echo "*** Checking if the dependencies required for testing and analysis are available ***"
 	@status=0 ; \
 	for pkg in $(TEST_DEPENDENCIES) ; do \
-		test_output="$$(rpm -q "$$pkg")" ; \
+		test_output="$$(rpm -q --whatprovides "$$pkg")" ; \
 		if [ $$? != 0 ]; then \
 			echo "$$test_output" ; \
 			status=1 ; \
-- 
2.4.3



More information about the anaconda-patches mailing list