From: ticktock35 Date: Mon, 15 Dec 2008 05:17:25 +0000 (+0000) Subject: opkg: re-read package lists after update X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=9c42400c43fbdcdb6ca87376d446f15beb8892be opkg: re-read package lists after update git-svn-id: http://opkg.googlecode.com/svn/trunk@111 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/opkg.c b/libopkg/opkg.c index 1875b13..9b29e68 100644 --- a/libopkg/opkg.c +++ b/libopkg/opkg.c @@ -816,6 +816,9 @@ opkg_update_package_lists (opkg_t *opkg, opkg_progress_callback_t progress_callb free (tmp); free (lists_dir); + /* Now re-read the package lists to update package hash tables. */ + opkg_re_read_config_files (opkg); + return result; }