diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-21 10:36:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-21 10:36:40 +0000 |
commit | ba7d905b544679f811cfd3919d8f8a2edbd7b395 (patch) | |
tree | 56174a3017821aadfe1f10dcba1359f8fc4cb8c1 /package/gzip/gzip.mk | |
parent | 4ab3f3f31fab3980b312fd5b6960f1f88f446b42 (diff) | |
download | buildroot-novena-ba7d905b544679f811cfd3919d8f8a2edbd7b395.tar.gz buildroot-novena-ba7d905b544679f811cfd3919d8f8a2edbd7b395.zip |
- use global DISABLE_LARGEFILE
Diffstat (limited to 'package/gzip/gzip.mk')
-rw-r--r-- | package/gzip/gzip.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/package/gzip/gzip.mk b/package/gzip/gzip.mk index 2de03989d..712dad790 100644 --- a/package/gzip/gzip.mk +++ b/package/gzip/gzip.mk @@ -12,10 +12,6 @@ GZIP_CAT:=$(ZCAT) GZIP_BINARY:=$(GZIP_DIR)/gzip GZIP_TARGET_BINARY:=$(TARGET_DIR)/bin/zmore -ifneq ($(BR2_LARGEFILE),y) -GZIP_LARGEFILE="--disable-largefile" -endif - $(DL_DIR)/$(GZIP_SOURCE): $(WGET) -P $(DL_DIR) $(GZIP_SITE)/$(GZIP_SOURCE) @@ -44,7 +40,7 @@ $(GZIP_DIR)/.configured: $(GZIP_DIR)/.unpacked --mandir=/usr/man \ --infodir=/usr/info \ $(DISABLE_NLS) \ - $(GZIP_LARGEFILE) \ + $(DISABLE_LARGEFILE) \ ); touch $(GZIP_DIR)/.configured |