1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From e5744c43fe7af086039f9036acf86866de53a08d Mon Sep 17 00:00:00 2001
From: Kaare Hviid <ukh@id.cbs.dk>
Date: Thu, 2 Jan 2014 06:28:17 +0000
Subject: Set CXX to g++, not gcc
Bug-Debian: http://bugs.debian.org/270651
Forwarded: no
Last-Update: 2010-03-28
Patch-Name: cxx-g++.patch
---
utils/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils/Makefile b/utils/Makefile
index af4f661..3be3041 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -1,5 +1,5 @@
CC=gcc
-CXX=gcc
+CXX=g++
FLAGS=-Wall
CPPFLAGS=
|