diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-17 01:29:27 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-17 01:29:27 +0000 |
commit | 8162065d968b219e01628d5118683ba41da6c121 (patch) | |
tree | b5f5dd01922499040ecf15a6dfe4502423982e05 | |
parent | 7bfc5d37f49fc702a680e34d87783ba4082717df (diff) | |
download | buildroot-novena-8162065d968b219e01628d5118683ba41da6c121.tar.gz buildroot-novena-8162065d968b219e01628d5118683ba41da6c121.zip |
Fix most things when large file support is not configured.
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -210,6 +210,10 @@ ifeq ($(ENABLE_LOCALE),true) EXTRA_GCC_CONFIG_OPTIONS += --enable-clocale=gnu endif +ifneq ($(BUILD_WITH_LARGEFILE),true) +DISABLE_LARGEFILE= --disable-largefile +endif + HOSTCC:=gcc BASE_DIR:=${shell pwd} SOURCE_DIR:=$(BASE_DIR)/sources |