diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-01 21:20:49 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-01 21:20:49 +0000 |
commit | eea9e45879a0aca3ca44a614f3eb1059b1634241 (patch) | |
tree | 80d3787aecc3f854cb9d824d08460aa503927736 /extra/Configs/Config.v850e | |
parent | 3c32d925ccfb94c22e64ed821615e3e7d436c1e0 (diff) |
Patch from Miles Bader to allow Large File support on the v850.
Diffstat (limited to 'extra/Configs/Config.v850e')
-rw-r--r-- | extra/Configs/Config.v850e | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/Configs/Config.v850e b/extra/Configs/Config.v850e index 091c69a2f..74b4cfd0c 100644 --- a/extra/Configs/Config.v850e +++ b/extra/Configs/Config.v850e @@ -113,7 +113,7 @@ UNIFIED_SYSCALL = false # If you want large file support (greater then 2 GiB) turn this on. # Do not enable this unless your kernel provides large file support. -DOLFS = false +DOLFS = true # Posix regular expression code is really big -- 27k all by itself. # If you don't use regular expressions, turn this off and save space. @@ -181,14 +181,14 @@ SHARED_LIB_LOADER_PATH=$(DEVEL_PREFIX)/lib # This value is used by the 'make install' Makefile target. Since this # directory is compiled into the uclibc cross compiler spoofer, you # have to recompile if you change this value... -DEVEL_PREFIX = /usr/$(TARGET_ARCH)-linux-uclibc +DEVEL_PREFIX = $(DESTDIR)/$(TARGET_ARCH)-uclibc # SYSTEM_DEVEL_PREFIX is the directory prefix used when installing # bin/arch-uclibc-gcc, bin/arch-uclibc-ld, etc. This is only used by # the 'make install' target, and is not compiled into anything. This # defaults to $DEVEL_PREFIX/usr, but makers of .rpms and .debs will # want to set this to "/usr" instead. -SYSTEM_DEVEL_PREFIX = $(DEVEL_PREFIX)/usr +SYSTEM_DEVEL_PREFIX = $(DESTDIR) # If you want 'make install' to install everything under a temporary # directory, the define PREFIX during the install step, |