diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-07-12 19:53:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-07-12 19:53:12 +0000 |
commit | dadad95190710ae2e7c2c0cc9cacf5541f99c6f7 (patch) | |
tree | 93d8e20d5016e75aced3b98dd540b31d050ee9ee /package/util-linux/util-linux.mk | |
parent | b5ad3a7944cc37892e8da014a955677558fa4e50 (diff) |
Thomas Lundquist writes:
If I understand you correctly, you want the ncurses development headers
on the target.
a patch for this (named target_headers.patch and includes similar
options for a few other libs in buildroot) can be found at:
http://www.zelow.no/floppyfw/download/Development/Patches/buildroot/
(a few packages there aswell)
it will add an option to put headers on target for ncurses, zlib and
openssl.
Thomas.
Diffstat (limited to 'package/util-linux/util-linux.mk')
-rw-r--r-- | package/util-linux/util-linux.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk index 879d8009f..6a5a6891c 100644 --- a/package/util-linux/util-linux.mk +++ b/package/util-linux/util-linux.mk @@ -21,6 +21,9 @@ $(UTIL-LINUX_DIR)/.unpacked: $(DL_DIR)/$(UTIL-LINUX_SOURCE) $(DL_DIR)/$(UTIL-LIN $(UTIL-LINUX_CAT) $(DL_DIR)/$(UTIL-LINUX_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - $(UTIL-LINUX_CAT) $(DL_DIR)/$(UTIL-LINUX_PATCH) | patch -p1 -d $(UTIL-LINUX_DIR) toolchain/patch-kernel.sh $(UTIL-LINUX_DIR) package/util-linux/ util-linux\*.patch +ifneq ($(BR2_LARGEFILE),y) + $(SED) "/D_FILE_OFFSET_BITS/ d" $(UTIL-LINUX_DIR)/MCONFIG +endif touch $(UTIL-LINUX_DIR)/.unpacked $(UTIL-LINUX_DIR)/.configured: $(UTIL-LINUX_DIR)/.unpacked @@ -40,6 +43,7 @@ $(UTIL-LINUX_DIR)/.configured: $(UTIL-LINUX_DIR)/.unpacked --mandir=/usr/man \ --infodir=/usr/info \ $(DISABLE_NLS) \ + $(DISABLE_LARGEFILE) \ ARCH=$(ARCH) \ ); $(SED) "s,^INSTALLSUID=.*,INSTALLSUID=\\$$\(INSTALL\) -m \\$$\(BINMODE\)," \ |