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
commit997d4fb0131ca6aba5b729c1a8b0c694fcd35b5b (patch)
tree34fc01a983725ac9174b3d5c682f2e0bcce2b434 /package/opkg
parent672e12f96097c6aaa48c011b45987cef2ec2cfb5 (diff)
downloadupstream-997d4fb0131ca6aba5b729c1a8b0c694fcd35b5b.tar.gz
upstream-997d4fb0131ca6aba5b729c1a8b0c694fcd35b5b.tar.bz2
upstream-997d4fb0131ca6aba5b729c1a8b0c694fcd35b5b.zip
opkg: fix the -force_space option
SVN-Revision: 17611
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;
+ }