diff options
author | Eric Anholt <[email protected]> | 2012-06-11 09:46:02 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-06-21 09:58:12 -0700 |
commit | acf27121a5cda81429bbbaa43debdf662f9558d2 (patch) | |
tree | 97521e75b067ab6c37f076e7452058e3e42b9224 /src/mesa/x86 | |
parent | e426949cf1c328d5686b1048cdcec54a4fbca986 (diff) |
make: Drop HOST_CC and HOST_CFLAGS.
Except for the deleted linux-cell target, these were just the target
cc/cflags. The only usage was for gen_matypes, which wants the
target's structure packing, not the host, anyway.
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |