diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-28 17:00:43 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-28 17:00:43 +0000 |
commit | 3052dfbb85c1b7d4afa894efa9c5f29a653f0c2b (patch) | |
tree | 42b0808e8305ba26cb90cb25cdbb88f4639eed8f | |
parent | 04628c88d40b44381a7daf4c635088b91241278b (diff) | |
download | upstream-3052dfbb85c1b7d4afa894efa9c5f29a653f0c2b.tar.gz upstream-3052dfbb85c1b7d4afa894efa9c5f29a653f0c2b.tar.bz2 upstream-3052dfbb85c1b7d4afa894efa9c5f29a653f0c2b.zip |
remove support for disabling large file support, it is broken, breaks compatibility to anything and has no effect on most packages
SVN-Revision: 25208
-rw-r--r-- | Config.in | 7 | ||||
-rw-r--r-- | rules.mk | 6 |
2 files changed, 0 insertions, 13 deletions
@@ -140,13 +140,6 @@ menu "Global build settings" In case software provides optional support for patented functionality, this optional support will get disabled for this package. - config LARGEFILE - bool - prompt "Enable large file (files > 2 GB) support" - default y - help - Enable large file (files > 2 GB) support. - config SHADOW_PASSWORDS bool prompt "Enable shadow password support" @@ -231,12 +231,6 @@ else DISABLE_IPV6:=--disable-ipv6 endif -ifeq ($(CONFIG_LARGEFILE),y) - DISABLE_LARGEFILE:= -else - DISABLE_LARGEFILE:=--disable-largefile -endif - ifeq ($(CONFIG_TAR_VERBOSITY),y) TAR_OPTIONS:=-xvf - else |