From: Thomas Petazzoni Date: Thu, 6 May 2010 18:44:21 +0000 (+0200) Subject: Fix the computation of REAL_GNU_TARGET_NAME X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5e1fbd2c33452bd7480583ccc5cfc50546ac010d;p=buildroot.git Fix the computation of REAL_GNU_TARGET_NAME When the selected C library is glibc, the C library shouldn't be mentionned in REAL_GNU_TARGET_NAME. In other words: arm-unknown-linux-uclibcgnueabi must be used for uClibc arm-unknown-linux-gnueabi must be used for glibc This fixes the build of GDB on the target, as reported by Quotient Remainder . Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/Makefile.in b/package/Makefile.in index eab9168707..cd492f1fd5 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -104,7 +104,7 @@ LIBC=uclibc else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_UCLIBC),y) LIBC=uclibc else -LIBC=glibc +LIBC= endif ifeq ($(BR2_ARM_EABI),y)