1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 22:24:12 +03:00

[toolchain] remove support for disabling large file support, it is broken, breaks compatibility to anything and has no effect on most packages

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25208 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2011-01-28 17:00:43 +00:00
parent 636cc564f0
commit 1db1d443f3
2 changed files with 0 additions and 13 deletions

View File

@ -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"

View File

@ -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