From dbfd77f671a30254b954e4faa5da5e570b82dcab Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 19 Oct 2004 19:20:38 +0000 Subject: Kristian Hoffmann writes: TARGET_LANGUAGES wasn't being set correctly if you enable GCJ or C++ in the buildroot config. It looks like INSTALL_LIBSTDCPP and INSTALL_LIBGCJ were renamed to BR2_INSTALL_... in the config system, but not in the gcc and ccache makefiles. -Kristian --- toolchain/gcc/gcc-uclibc-3.x.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toolchain/gcc/gcc-uclibc-3.x.mk') diff --git a/toolchain/gcc/gcc-uclibc-3.x.mk b/toolchain/gcc/gcc-uclibc-3.x.mk index 817c38245..1c44e66cd 100644 --- a/toolchain/gcc/gcc-uclibc-3.x.mk +++ b/toolchain/gcc/gcc-uclibc-3.x.mk @@ -39,10 +39,10 @@ GCC_STRIP_HOST_BINARIES:=true # ############################################################# -ifeq ($(INSTALL_LIBGCJ),true) +ifeq ($(BR2_INSTALL_LIBGCJ),y) TARGET_LANGUAGES:=c,c++,java else -ifeq ($(INSTALL_LIBSTDCPP),true) +ifeq ($(BR2_INSTALL_LIBSTDCPP),y) TARGET_LANGUAGES:=c,c++ else TARGET_LANGUAGES:=c -- cgit v1.2.3