aboutsummaryrefslogtreecommitdiffstats
path: root/package/opkg
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-09-19 17:32:59 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-09-19 17:32:59 +0000
commit6bc630098413f1ad718990a0026e8927f4d49c25 (patch)
treec53800c68190415305e9c6cfb958bd3fb983ed74 /package/opkg
parentaaf7d1c63503a56e8daac970d45a0be574c01589 (diff)
downloadupstream-6bc630098413f1ad718990a0026e8927f4d49c25.tar.gz
upstream-6bc630098413f1ad718990a0026e8927f4d49c25.tar.bz2
upstream-6bc630098413f1ad718990a0026e8927f4d49c25.zip
opkg: fix the -force_space option
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17611 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg')
-rw-r--r--package/opkg/patches/006-fix_force_space.patch12
1 files changed, 12 insertions, 0 deletions
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 0000000000..80406ba168
--- /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;
+ }