Merge commit 'grg' into HEAD
[oweals/opkg-lede.git] / libopkg / opkg_configure.c
index 2c22bfcd05791752fe29caa2b158a5f6c6eefa9a..154d3e6f30bbdaebd1b025fd055eb26c47b0c141 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,9 +32,9 @@ 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;
     }