From 23b1806f6591fabf01b7ff9f0fa7f6a070289864 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 29 Jul 2012 04:21:36 -0500 Subject: [PATCH] main: remove redundant checks made obsolete by depgraph compilation --- main.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/main.c b/main.c index 45840c4..f2acd7c 100644 --- a/main.c +++ b/main.c @@ -248,10 +248,6 @@ pkg_queue_walk(pkg_queue_t *head) goto out; } - /* we couldn't build the entire depgraph, so bail. */ - if (retval != EXIT_SUCCESS) - goto out; - /* we should verify that the graph is complete before attempting to compute cflags etc. */ if (pkg_verify_graph(&world, maximum_traverse_depth, global_traverse_flags) != PKG_ERRF_OK) {