diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-31 15:10:55 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-31 15:10:55 +0000 |
commit | cd1819ee156bcecb8854a0dbc389a4c668fb4c8a (patch) | |
tree | e8efaeca4f1a7ce64e9a6e9a9c142cb29b12aea1 /package/Makefile.in | |
parent | ba88feb05f478b1a89c83e7da5dc4221aaece1b7 (diff) | |
download | buildroot-novena-cd1819ee156bcecb8854a0dbc389a4c668fb4c8a.tar.gz buildroot-novena-cd1819ee156bcecb8854a0dbc389a4c668fb4c8a.zip |
- nil the CXX env var if we don't have a CXX cross-compiler
Diffstat (limited to 'package/Makefile.in')
-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 8be768f88..17302527d 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -238,7 +238,7 @@ ifneq ($(BR2_INET_IPV6),y) DISABLE_IPV6= --disable-ipv6 endif -ifeq ($(BR2_INSTALL_LIBSTDCPP),) +ifneq ($(BR2_GCC_CROSS_CXX),y) TARGET_CONFIGURE_OPTS+=CXX="" endif |