summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opkg/opkg/fix_installorder.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/opkg/opkg/fix_installorder.patch')
-rw-r--r--meta/recipes-devtools/opkg/opkg/fix_installorder.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/opkg/opkg/fix_installorder.patch b/meta/recipes-devtools/opkg/opkg/fix_installorder.patch
index 9dd10b28e1..6a7e6dbb4b 100644
--- a/meta/recipes-devtools/opkg/opkg/fix_installorder.patch
+++ b/meta/recipes-devtools/opkg/opkg/fix_installorder.patch
@@ -147,7 +147,7 @@ Index: trunk/libopkg/pkg_depends.c
147+ dependence_to_satisfy, 0); 147+ dependence_to_satisfy, 0);
148+ /* Being that I can't test constraing in pkg_hash, I will test it here */ 148+ /* Being that I can't test constraing in pkg_hash, I will test it here */
149+ if (satisfying_pkg != NULL && satisfying_pkg != pkg) { 149+ if (satisfying_pkg != NULL && satisfying_pkg != pkg) {
150+ if (pkg_constraint_satisfied(satisfying_pkg, dependence_to_satisfy) && satisfying_pkg->state_want == SW_INSTALL) 150+ if (pkg_constraint_satisfied(satisfying_pkg, dependence_to_satisfy) && (satisfying_pkg->state_want == SW_INSTALL || satisfying_pkg->state_want == SW_UNKNOWN))
151+ pkg_vec_insert(satisfiers, satisfying_pkg); 151+ pkg_vec_insert(satisfiers, satisfying_pkg);
152+ } 152+ }
153+ 153+