From: Scott Wood Date: Sun, 5 Aug 2007 17:04:43 +0000 (-0500) Subject: build: C builds were incorrectly using g++ rather than gcc. X-Git-Url: http://git.buserror.net/cgi-bin/gitweb.cgi?p=polintos%2Fscott%2Fpriv.git;a=commitdiff_plain;h=92222712a7b6e2a83646724bfb1f1ccf38abff63 build: C builds were incorrectly using g++ rather than gcc. --- diff --git a/Makefile.target b/Makefile.target index 7167a54..2943437 100644 --- a/Makefile.target +++ b/Makefile.target @@ -74,9 +74,9 @@ SERVERDIR := $(BUILDDIR)/include/servers IFACES := $(BASEBUILDDIR)/build/idl/ifaces GENINCLUDES := $(ARCHBUILDDIR)/build/include/generated -BUILDCC := g++ +BUILDCC := gcc BUILDCXX := g++ -CC := $(CROSS)g++ +CC := $(CROSS)gcc CXX := $(CROSS)g++ AS := $(CROSS)as AR := $(CROSS)ar