diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-10-19 19:20:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-10-19 19:20:38 +0000 |
commit | dbfd77f671a30254b954e4faa5da5e570b82dcab (patch) | |
tree | 30fe67a05fae86bc44b1f0e0f499cb61ac8c4d6b /toolchain/gcc/gcc-uclibc-3.x.mk | |
parent | 8500fcd5fd3d8ed19bf231032de3de74708b2c8f (diff) |
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
Diffstat (limited to 'toolchain/gcc/gcc-uclibc-3.x.mk')
-rw-r--r-- | toolchain/gcc/gcc-uclibc-3.x.mk | 4 |
1 files changed, 2 insertions, 2 deletions
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 |