opkg: remove old opkg.c
[oweals/opkg-lede.git] / libopkg / opkg_configure.c
index 8309e40d6dbe67fcd138d0f1a0d2c529de83dfe7..34a5d6fc4b21555026958f9b97b589fcf10fe3b6 100644 (file)
@@ -16,7 +16,7 @@
 */
 
 #include "opkg.h"
-
+#include "sprintf_alloc.h"
 #include "opkg_configure.h"
 #include "opkg_state.h"
 
@@ -32,17 +32,17 @@ int opkg_configure(opkg_conf_t *conf, pkg_t *pkg)
 
     char *pkgid;
     sprintf_alloc (&pkgid, "%s;%s;%s;", pkg->name, pkg->version, pkg->architecture);
-    opkg_set_current_state (OPKG_STATE_CONFIGURING_PKG, pkgid);
+    opkg_set_current_state (conf, 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);
+       opkg_message(conf, OPKG_ERROR, "ERROR: %s.postinst returned %d\n", pkg->name, err);
        return err;
     }
 
     opkg_state_changed++;
-    opkg_set_current_state (OPKG_STATE_NONE, NULL);
+    opkg_set_current_state (conf, OPKG_STATE_NONE, NULL);
     return 0;
 }