From 1010955db71f0a095df1dccf78623b2dd2138e12 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Mon, 6 Aug 2012 23:17:14 +0200 Subject: [PATCH] gcc: fixed quoting in gcc.conf to properly find the needed libraries --- base/gcc/gcc.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/base/gcc/gcc.conf b/base/gcc/gcc.conf index 307c9f9d2..adfe185ed 100644 --- a/base/gcc/gcc.conf +++ b/base/gcc/gcc.conf @@ -131,10 +131,10 @@ if atstage toolchain; then var_append confopt " " "--disable-libquadmath" # use the native libraries we build in the toolchain directory - var_append extraconfopt ' ' '--with-gmp=$root' - var_append extraconfopt ' ' '--with-mpfr=$root --with-mpfr-lib=$root/$libdir' - var_append extraconfopt ' ' '--with-ppl=$root' - var_append extraconfopt ' ' '--with-cloog=$root' + var_append extraconfopt ' ' "--with-gmp=$root" + var_append extraconfopt ' ' "--with-mpfr=$root --with-mpfr-lib=$root/$libdir" + var_append extraconfopt ' ' "--with-ppl=$root" + var_append extraconfopt ' ' "--with-cloog=$root" export LDFLAGS="-Wl,-rpath,${root}${libdir}" fi