summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configs/default2
-rw-r--r--src/mesa/x86/Makefile2
2 files changed, 1 insertions, 3 deletions
diff --git a/configs/default b/configs/default
index 20ba796424f..bf67d347fe4 100644
--- a/configs/default
+++ b/configs/default
@@ -19,11 +19,9 @@ DRM_SOURCE_PATH=$(TOP)/../drm
# Compiler and flags
CC = cc
CXX = CC
-HOST_CC = $(CC)
CFLAGS = -O
CXXFLAGS = -O
LDFLAGS =
-HOST_CFLAGS = $(CFLAGS)
GLU_CFLAGS =
GLX_TLS = no
diff --git a/src/mesa/x86/Makefile b/src/mesa/x86/Makefile
index 9716dc27f97..81071767e1d 100644
--- a/src/mesa/x86/Makefile
+++ b/src/mesa/x86/Makefile
@@ -21,7 +21,7 @@ clean:
gen_matypes: gen_matypes.c
- $(HOST_CC) $(ARCH_FLAGS) $(INCLUDE_DIRS) $(HOST_CFLAGS) gen_matypes.c -o gen_matypes
+ $(CC) $(ARCH_FLAGS) $(INCLUDE_DIRS) $(CFLAGS) gen_matypes.c -o gen_matypes
# need some special rules here, unfortunately
matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes