diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-11-17 15:43:51 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-11-17 15:43:51 +0000 |
commit | 6e2823c1fa3c470da2a14f0f9aa985d71c9ffb90 (patch) | |
tree | 4ceda86e35164f60eb7bf90bacb7d19e2adcd04a /toolchain/binutils/binutils.mk | |
parent | b9cc4a53a52b8318e10615e8ceef60efab85fae0 (diff) | |
download | buildroot-novena-6e2823c1fa3c470da2a14f0f9aa985d71c9ffb90.tar.gz buildroot-novena-6e2823c1fa3c470da2a14f0f9aa985d71c9ffb90.zip |
- add and use BR2_BZCAT config option.
Diffstat (limited to 'toolchain/binutils/binutils.mk')
-rw-r--r-- | toolchain/binutils/binutils.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toolchain/binutils/binutils.mk b/toolchain/binutils/binutils.mk index 2df68bd0f..98e08597d 100644 --- a/toolchain/binutils/binutils.mk +++ b/toolchain/binutils/binutils.mk @@ -4,9 +4,10 @@ # ############################################################# BINUTILS_VERSION:=$(strip $(subst ",, $(BR2_BINUTILS_VERSION))) +#")) EXTRA_BINUTILS_CONFIG_OPTIONS:=$(strip $(subst ",, $(BR2_EXTRA_BINUTILS_CONFIG_OPTIONS))) -#" +#")) BINUTILS_SITE:=ftp://ftp.kernel.org/pub/linux/devel/binutils ifeq ($(BINUTILS_VERSION),2.17) BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/ @@ -32,7 +33,7 @@ endif BINUTILS_SOURCE:=binutils-$(BINUTILS_VERSION).tar.bz2 BINUTILS_DIR:=$(TOOL_BUILD_DIR)/binutils-$(BINUTILS_VERSION) -BINUTILS_CAT:=bzcat +BINUTILS_CAT:=$(BZCAT) BINUTILS_DIR1:=$(TOOL_BUILD_DIR)/binutils-$(BINUTILS_VERSION)-build |