Running a script does not change the state, modifying the state flags does.
[oweals/opkg-lede.git] / libopkg / opkg_configure.c
index 2c22bfcd05791752fe29caa2b158a5f6c6eefa9a..4aca0f07111141e64a02c38a5c916e1bf866c753 100644 (file)
@@ -21,7 +21,8 @@
 #include "opkg_message.h"
 #include "opkg_cmd.h"
 
-int opkg_configure(opkg_conf_t *conf, pkg_t *pkg)
+int
+opkg_configure(pkg_t *pkg)
 {
     int err;
 
@@ -31,13 +32,12 @@ int opkg_configure(opkg_conf_t *conf, pkg_t *pkg)
     /* DPKG_INCOMPATIBILITY:
        dpkg actually includes a version number to this script call */
 
-    err = pkg_run_script(conf, pkg, "postinst", "configure");
+    err = pkg_run_script(pkg, "postinst", "configure");
     if (err) {
-       opkg_message(conf, OPKG_ERROR, "ERROR: %s.postinst returned %d\n", pkg->name, err);
+       opkg_msg(ERROR, "%s.postinst returned %d.\n", pkg->name, err);
        return err;
     }
 
-    opkg_state_changed++;
     return 0;
 }