X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=blobdiff_plain;f=opkg_configure.c;h=8309e40d6dbe67fcd138d0f1a0d2c529de83dfe7;hp=16f83478971dcb5a4e9a73c5eba1a50f16d16acb;hb=e2fd21015aeedba1a9936f46b185c41047ee034d;hpb=c82094c9e17afef41e49cff3eabdbdd0f6ca3a21 diff --git a/opkg_configure.c b/opkg_configure.c index 16f8347..8309e40 100644 --- a/opkg_configure.c +++ b/opkg_configure.c @@ -18,6 +18,7 @@ #include "opkg.h" #include "opkg_configure.h" +#include "opkg_state.h" int opkg_configure(opkg_conf_t *conf, pkg_t *pkg) { @@ -28,6 +29,12 @@ int opkg_configure(opkg_conf_t *conf, pkg_t *pkg) end of opkg_install(). Do we care? */ /* DPKG_INCOMPATIBILITY: dpkg actually includes a version number to this script call */ + + char *pkgid; + sprintf_alloc (&pkgid, "%s;%s;%s;", pkg->name, pkg->version, pkg->architecture); + opkg_set_current_state (OPKG_STATE_CONFIGURING_PKG, pkgid); + free (pkgid); + err = pkg_run_script(conf, pkg, "postinst", "configure"); if (err) { printf("ERROR: %s.postinst returned %d\n", pkg->name, err); @@ -35,6 +42,7 @@ int opkg_configure(opkg_conf_t *conf, pkg_t *pkg) } opkg_state_changed++; + opkg_set_current_state (OPKG_STATE_NONE, NULL); return 0; }