summaryrefslogtreecommitdiffstats
path: root/package/bzip2
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-01-23 10:48:46 +0000
committerEric Andersen <andersen@codepoet.org>2005-01-23 10:48:46 +0000
commitceb4d070f9372e1b13273bb9a32c41c61f008a72 (patch)
treea99f6ed6021ce8ec4e8b0f61b9bccf109ff11d9b /package/bzip2
parentc91afbb53c65fb634fb64cb69c9687d6f2dfe822 (diff)
downloadbuildroot-novena-ceb4d070f9372e1b13273bb9a32c41c61f008a72.tar.gz
buildroot-novena-ceb4d070f9372e1b13273bb9a32c41c61f008a72.zip
Patch from pdinoto: http://bugs.uclibc.org/view.php?id=30
This patch corrects bzip2 Makefile modification when BR2_LARGEFILE is n Seems like a small typo
Diffstat (limited to 'package/bzip2')
-rw-r--r--package/bzip2/bzip2.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/bzip2/bzip2.mk b/package/bzip2/bzip2.mk
index 2bb395e52..6b595e2ed 100644
--- a/package/bzip2/bzip2.mk
+++ b/package/bzip2/bzip2.mk
@@ -20,7 +20,7 @@ $(BZIP2_DIR)/.unpacked: $(DL_DIR)/$(BZIP2_SOURCE)
$(SED) "s,ln \$$(,ln -sf \$$(,g" $(BZIP2_DIR)/Makefile
$(SED) "s,ln -s (lib.*),ln -sf \$$1 ; ln -sf libbz2.so.1.0.2 libbz2.so,g" \
$(BZIP2_DIR)/Makefile-libbz2_so
-ifeq ($(BR2_LARGEFILE),y)
+ifneq ($(BR2_LARGEFILE),y)
$(SED) "s,^BIGFILES,#BIGFILES,g" $(BZIP2_DIR)/Makefile
$(SED) "s,^BIGFILES,#BIGFILES,g" $(BZIP2_DIR)/Makefile-libbz2_so
endif