From: Michael Schroeder Date: Wed, 27 Mar 2019 12:20:32 +0000 (+0100) Subject: Fix REL_EQ for conda, it's "==" and not "=" X-Git-Tag: 0.7.4~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02c3ff30b813c213f57e61d85452da72a4781f69;p=thirdparty%2Flibsolv.git Fix REL_EQ for conda, it's "==" and not "=" "=" is a fuzzy match. --- diff --git a/src/poolid.c b/src/poolid.c index 1312ab9c..ef0d95d4 100644 --- a/src/poolid.c +++ b/src/poolid.c @@ -172,7 +172,7 @@ pool_id2rel(const Pool *pool, Id id) #ifdef ENABLE_CONDA if (pool->disttype == DISTTYPE_CONDA) { - static const char *condarels[] = { "!", ">", "=", ">=", "<", "!=", "<=", "<=>" }; + static const char *condarels[] = { "!", ">", "==", ">=", "<", "!=", "<=", "<=>" }; if (rd->flags < 8) return condarels[rd->flags]; if (rd->flags == REL_WITH)