From 04bde7096935eca3fb8b95646876a83e0b41a2d7 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 7 Nov 2014 10:18:01 +0100 Subject: [PATCH] xbps_init: print bestmatching value. --- lib/initend.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/initend.c b/lib/initend.c index fc43bcbb..99eab458 100644 --- a/lib/initend.c +++ b/lib/initend.c @@ -477,6 +477,7 @@ xbps_init(struct xbps_handle *xhp) xbps_dbg_printf(xhp, "confdir=%s\n", xhp->confdir); xbps_dbg_printf(xhp, "sysconfdir=%s\n", sysconfdir); xbps_dbg_printf(xhp, "syslog=%s\n", xhp->flags & XBPS_FLAG_DISABLE_SYSLOG ? "false" : "true"); + xbps_dbg_printf(xhp, "bestmatching=%s\n", xhp->flags & XBPS_FLAG_BESTMATCH ? "true" : "false"); xbps_dbg_printf(xhp, "Architecture: %s\n", xhp->native_arch); xbps_dbg_printf(xhp, "Target Architecture: %s\n", xhp->target_arch);