pacman: clarify error when alpm fails to init
Currently pacman is hard coded to print the dbpath, then the error alpm returned. Even though the error could really be caused by anything. So instead just print the arugemnts given to alpm and not assume the resulting error message is releated to either path. Fixes FS#59595 Signed-off-by: morganamilo <morganamilo@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
27955a0fee
commit
424129e8d1
1 changed files with 2 additions and 2 deletions
|
@ -766,8 +766,8 @@ static int setup_libalpm(void)
|
|||
/* initialize library */
|
||||
handle = alpm_initialize(config->rootdir, config->dbpath, &err);
|
||||
if(!handle) {
|
||||
pm_printf(ALPM_LOG_ERROR, _("failed to initialize alpm library\n(%s: %s)\n"),
|
||||
alpm_strerror(err), config->dbpath);
|
||||
pm_printf(ALPM_LOG_ERROR, _("failed to initialize alpm library:\n(root: %s, dbpath: %s)\n%s\n"),
|
||||
config->rootdir, config->dbpath, alpm_strerror(err));
|
||||
if(err == ALPM_ERR_DB_VERSION) {
|
||||
fprintf(stderr, _("try running pacman-db-upgrade\n"));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue