* Minor output fix (move colon so it's not part of the URL)

* Added ldconfig on --sync operations too
This commit is contained in:
Aaron Griffin 2007-02-01 03:31:46 +00:00
parent 21e19a7bcf
commit 616620ad5c
2 changed files with 8 additions and 1 deletions

View file

@ -1079,6 +1079,13 @@ int _alpm_sync_commit(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t **data)
unlink(i->data);
}
}
/* run ldconfig if it exists */
if(handle->trans->state != STATE_INTERRUPTED) {
_alpm_log(PM_LOG_DEBUG, _("running \"ldconfig -r %s\""), handle->root);
_alpm_ldconfig(handle->root);
}
return(0);
error: