* config.make.in: Use the correct CXX compiler. Fixes bug #36722.

Patch by Johannes Lundberg <johannes@brilliantservice.co.jp>.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@37516 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2013-12-25 13:40:48 +00:00
parent 2d838df2e9
commit 925f28d5c8
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-12-25 Fred Kiefer <FredKiefer@gmx.de>
* config.make.in: Use the correct CXX compiler. Fixes bug #36722.
Patch by Johannes Lundberg <johannes@brilliantservice.co.jp>.
2013-12-24 Richard Frith-Macdonald <rfm@gnu.org>
* Version:

View file

@ -46,7 +46,7 @@ endif
# Ignore the default CXX=g++ used by GNU make when nothing is specified;
# in that case, we want to use our own default CXX.
ifeq ($(origin CC), default)
ifeq ($(origin CXX), default)
CXX = @CXX@
endif