aboutsummaryrefslogtreecommitdiff
path: root/scripts/build/binutils.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-13 10:32:38 +0000
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-13 10:32:38 +0000
commit6e498915655b15dfc84215c36b60859e044020d1 (patch)
treebd05a6033d3eda56286ad0897072c9090419dd34 /scripts/build/binutils.sh
parent6e13d4c6cf1e7e4faa3920d60642a9a95790a6bf (diff)
downloadcrosstool-ng-6e498915655b15dfc84215c36b60859e044020d1.tar.gz
crosstool-ng-6e498915655b15dfc84215c36b60859e044020d1.tar.bz2
crosstool-ng-6e498915655b15dfc84215c36b60859e044020d1.zip
Ioannis E. VENETIS <venetis@mail.capsl.udel.edu> pointed out that GMP and MPFR were not used by gcc.
Turned out that none could use GMP and MPFR as the config option changed its name, but the change was not propagated to all users. /trunk/scripts/build/binutils.sh | 2 1 1 0 +- /trunk/scripts/build/debug/300-gdb.sh | 2 1 1 0 +- /trunk/scripts/build/cc_gcc.sh | 6 3 3 0 +++--- 3 files changed, 5 insertions(+), 5 deletions(-)
Diffstat (limited to 'scripts/build/binutils.sh')
-rw-r--r--scripts/build/binutils.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/binutils.sh b/scripts/build/binutils.sh
index 29f4fb7c..59c85105 100644
--- a/scripts/build/binutils.sh
+++ b/scripts/build/binutils.sh
@@ -27,7 +27,7 @@ do_binutils() {
binutils_opts=
# If GMP and MPFR were configured, then use that,
# otherwise let binutils find the system-wide libraries, if they exist.
- if [ "${CT_CC_GCC_GMP_MPFR}" = "y" ]; then
+ if [ "${CT_GMP_MPFR}" = "y" ]; then
binutils_opts="--with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}"
fi