diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-05-06 20:44:21 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-05-06 23:08:37 +0200 |
commit | 5e1fbd2c33452bd7480583ccc5cfc50546ac010d (patch) | |
tree | 436abc09206e9d32968be6098dbb126318ac1662 /package | |
parent | a5fe7371b28ed52a019dc424821f199d0f86b969 (diff) |
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 <quotientvremainder@gmail.com>.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index eab916870..cd492f1fd 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) |