diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-06 19:45:46 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-06 19:45:46 +0000 |
commit | cca0bfe4e315c75828c58b102b0f8979d29f0eb5 (patch) | |
tree | df7082c30b90d124c1324eed0bff4d24c9a788f1 /toolchain | |
parent | c6eb2ed657f6c91d021baf5926b4bd14066667be (diff) | |
download | buildroot-novena-cca0bfe4e315c75828c58b102b0f8979d29f0eb5.tar.gz buildroot-novena-cca0bfe4e315c75828c58b102b0f8979d29f0eb5.zip |
- prefer shared libs on the host
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/binutils/binutils.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/binutils/binutils.mk b/toolchain/binutils/binutils.mk index 71fa5c6a9..2b4fc0938 100644 --- a/toolchain/binutils/binutils.mk +++ b/toolchain/binutils/binutils.mk @@ -49,8 +49,8 @@ BINUTILS_NO_MPFR:=y endif ifndef BINUTILS_NO_MPFR -BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_LIBEXT) \ - $(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_LIBEXT) +BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \ + $(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT) BINUTILS_TARGET_PREREQ:=$(TARGET_DIR)/lib/libgmp$(LIBTGTEXT) \ $(TARGET_DIR)/lib/libmpfr$(LIBTGTEXT) |