opkg: trivial, clean up obsolete code, and some typo
[oweals/opkg-lede.git] / libopkg / opkg_configure.c
index 8309e40d6dbe67fcd138d0f1a0d2c529de83dfe7..bc8101542527cced24dfcc17603d2b07924f4c4d 100644 (file)
@@ -1,4 +1,4 @@
-/* opkg_configure.c - the itsy package management system
+/* opkg_configure.c - the opkg package management system
 
    Carl D. Worth
 
@@ -15,8 +15,8 @@
    General Public License for more details.
 */
 
-#include "opkg.h"
-
+#include "includes.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;
 }