diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2009-05-30 15:17:16 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2009-05-30 15:17:16 +0000 |
commit | d36a6dbc41a1f45a5c948f94c51ef6d4cd109644 (patch) | |
tree | f8ef9ed8f9604a3957d6725a8450c714fe01f776 /package | |
parent | 377a7cced4d26d9da1bad5145c196a5f9f608c57 (diff) | |
download | upstream-d36a6dbc41a1f45a5c948f94c51ef6d4cd109644.tar.gz upstream-d36a6dbc41a1f45a5c948f94c51ef6d4cd109644.tar.bz2 upstream-d36a6dbc41a1f45a5c948f94c51ef6d4cd109644.zip |
libtool: Unset CXX. It is not needed to build libtool, but if set configure preferes CXX over CC to build the global_symbol_pipe test program. So if there is no c++ compiler or the c++ installation is broken we end up with a broken libtool script. Fixes #5022
SVN-Revision: 16212
Diffstat (limited to 'package')
-rw-r--r-- | package/libtool/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libtool/Makefile b/package/libtool/Makefile index f179cd7c2a..bf9e520da7 100644 --- a/package/libtool/Makefile +++ b/package/libtool/Makefile @@ -25,6 +25,7 @@ include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk CONFIGURE_PREFIX=$(STAGING_DIR)/host +CONFIGURE_VARS+= CXX=no export GLOBAL_LIBDIR=$(STAGING_DIR)/usr/lib define Package/libltdl |