diff options
author | Petr Vorel <petr.vorel@gmail.com> | 2018-05-09 18:33:22 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-13 22:09:34 +0200 |
commit | d0527483fae228c31c3bb36aeba347c0a8df4eba (patch) | |
tree | 6074d9aa55a1a77c3142cdc75f14dd140f13684c | |
parent | 04918ca72f7d558022a8679df6519c90a579424a (diff) | |
download | buildroot-d0527483fae228c31c3bb36aeba347c0a8df4eba.tar.gz buildroot-d0527483fae228c31c3bb36aeba347c0a8df4eba.zip |
toolchain/buildroot: fix default of C library choice
The BR2_TOOLCHAIN_UCLIBC symbol doesn't exist, it was meant to be
BR2_TOOLCHAIN_BUILDROOT_UCLIBC.
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | toolchain/toolchain-buildroot/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in index 2f6624d217..75e8191f46 100644 --- a/toolchain/toolchain-buildroot/Config.in +++ b/toolchain/toolchain-buildroot/Config.in @@ -22,7 +22,7 @@ config BR2_TOOLCHAIN_BUILDROOT_VENDOR choice prompt "C library" - default BR2_TOOLCHAIN_UCLIBC + default BR2_TOOLCHAIN_BUILDROOT_UCLIBC default BR2_TOOLCHAIN_BUILDROOT_GLIBC if BR2_powerpc64 config BR2_TOOLCHAIN_BUILDROOT_UCLIBC |