From 8b8748c8f963900b83dc0fdd7757556f917fe4fd Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 14 Aug 2012 09:28:00 +0100 Subject: rpmresolve: Ensure we call the rpm relocation code at init We need to call rpmcliInit to ensure the rpm relocation code is called and it correctly honours the relocation environmental variables. We can drop the ReadConfigFiles call since the cliInit does this for us. (From OE-Core rev: eb17fdc1461953382360635480f12357eac4dc43) Signed-off-by: Richard Purdie --- meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c') diff --git a/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c b/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c index 2d9ed141f4..568b6891f4 100644 --- a/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c +++ b/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c @@ -343,9 +343,10 @@ int main(int argc, char **argv) const char *dblistfn = argv[optind]; + rpmcliInit(argc, argv, NULL); + //rpmSetVerbosity(RPMLOG_DEBUG); - rpmReadConfigFiles( NULL, NULL ); rpmDefineMacro(NULL, "__dbi_txn create nofsync", RMIL_CMDLINE); rc = loadTs(&ts, &tscount, dblistfn); -- cgit v1.2.3-54-g00ecf