Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pacman/callback.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c
index e1e77f78..3242d15b 100644
--- a/src/pacman/callback.c
+++ b/src/pacman/callback.c
@@ -308,8 +308,9 @@ void cb_event(alpm_event_t *event)
case ALPM_EVENT_DATABASE_MISSING:
if(!config->op_s_sync) {
pm_printf(ALPM_LOG_WARNING,
- "database file for '%s' does not exist\n",
- event->database_missing.dbname);
+ "database file for '%s' does not exist (use '%s' to download)\n",
+ event->database_missing.dbname,
+ config->op == PM_OP_FILES ? "-Fy": "-Sy");
}
break;
case ALPM_EVENT_PACNEW_CREATED: