1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-22 15:58:50 -05:00

improved logs for package removal

This commit is contained in:
Aurelien Foret 2005-04-17 10:01:47 +00:00
parent cb0182160d
commit 6dfa3ef6af

View File

@ -165,9 +165,11 @@ int remove_commit(pmtrans_t *trans, pmdb_t *db)
continue;
}
if(S_ISDIR(buf.st_mode)) {
_alpm_log(PM_LOG_FLOW2, "removing directory %s", file);
if(rmdir(line)) {
/* this is okay, other packages are probably using it. */
_alpm_log(PM_LOG_DEBUG, "keeping directory %s", file);
} else {
_alpm_log(PM_LOG_FLOW2, "removing directory %s", file);
}
} else {
/* if the file is flagged, back it up to .pacsave */