diff options
author | graham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2009-12-21 21:27:25 (EST) |
---|---|---|
committer | graham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2009-12-21 21:27:25 (EST) |
commit | cef79820ba49861601f4b1f90ff21056d0afd3ba (patch) | |
tree | a7821ca7ceda4e6be42ef2a98692d9c57cacb91c /libopkg | |
parent | 1482f86dcc9188ddc70644195e0f3ec230157f13 (diff) |
Write out status files and file lists in opkg_upgrade_all().
git-svn-id: http://opkg.googlecode.com/svn/trunk@510 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/opkg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libopkg/opkg.c b/libopkg/opkg.c index fdb2fe3..705156a 100644 --- a/libopkg/opkg.c +++ b/libopkg/opkg.c @@ -523,6 +523,10 @@ opkg_upgrade_all(opkg_progress_callback_t progress_callback, void *user_data) if (err) return 1; + /* write out status files and file lists */ + opkg_conf_write_status_files(); + pkg_write_changed_filelists(); + pdata.pkg = NULL; progress(pdata, 100); return 0; |