From 2fdb3fc0b67757afd6fe7a244b6e14d2a546af0e Mon Sep 17 00:00:00 2001 From: graham.gower Date: Tue, 08 Dec 2009 20:20:03 -0500 Subject: Merge commit 'grg' into HEAD git-svn-id: http://opkg.googlecode.com/svn/trunk@471 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg/opkg_configure.c') diff --git a/libopkg/opkg_configure.c b/libopkg/opkg_configure.c index 2c22bfc..154d3e6 100644 --- a/libopkg/opkg_configure.c +++ b/libopkg/opkg_configure.c @@ -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; } -- cgit v0.9.1