From: nbd Date: Sat, 19 Sep 2009 17:32:59 +0000 (+0000) Subject: opkg: fix the -force_space option X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=9af7cd4561a810776b0db7f5cb74516671046427 opkg: fix the -force_space option git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17611 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/opkg/patches/006-fix_force_space.patch b/package/opkg/patches/006-fix_force_space.patch new file mode 100644 index 000000000..80406ba16 --- /dev/null +++ b/package/opkg/patches/006-fix_force_space.patch @@ -0,0 +1,12 @@ +--- a/libopkg/opkg_conf.c ++++ b/libopkg/opkg_conf.c +@@ -252,6 +252,9 @@ int opkg_conf_init(opkg_conf_t *conf, co + if (args->force_downgrade) { + conf->force_downgrade = 1; + } ++ if (args->force_space) { ++ conf->force_space = 1; ++ } + if (args->force_reinstall) { + conf->force_reinstall = 1; + }