X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libopkg%2Fopkg_configure.c;h=dc05f1e491f704521844721bbc42730ed0025726;hb=51275a87838cd73898f795f578e4d9c169c1c189;hp=2c22bfcd05791752fe29caa2b158a5f6c6eefa9a;hpb=84d0ba0f9bf218898dcf33c0178449cc045ecd8c;p=oweals%2Fopkg-lede.git diff --git a/libopkg/opkg_configure.c b/libopkg/opkg_configure.c index 2c22bfc..dc05f1e 100644 --- a/libopkg/opkg_configure.c +++ b/libopkg/opkg_configure.c @@ -15,29 +15,28 @@ General Public License for more details. */ -#include "includes.h" +#include + #include "sprintf_alloc.h" #include "opkg_configure.h" #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; - - /* DPKG_INCOMPATIBILITY: - dpkg actually does some conffile handling here, rather than at the - end of opkg_install(). Do we care? */ - /* DPKG_INCOMPATIBILITY: - dpkg actually includes a version number to this script call */ - - err = pkg_run_script(conf, pkg, "postinst", "configure"); - if (err) { - opkg_message(conf, OPKG_ERROR, "ERROR: %s.postinst returned %d\n", pkg->name, err); - return err; - } - - opkg_state_changed++; - return 0; -} + int err; + + /* DPKG_INCOMPATIBILITY: + dpkg actually does some conffile handling here, rather than at the + end of opkg_install(). Do we care? */ + /* DPKG_INCOMPATIBILITY: + dpkg actually includes a version number to this script call */ + err = pkg_run_script(pkg, "postinst", "configure"); + if (err) { + opkg_msg(ERROR, "%s.postinst returned %d.\n", pkg->name, err); + return err; + } + + return 0; +}