summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2012-06-11 10:25:05 -0700
committerEric Anholt <eric@anholt.net>2012-06-21 09:58:12 -0700
commite426949cf1c328d5686b1048cdcec54a4fbca986 (patch)
tree5e0c596b25bcaf097791394678bb3c363537dbfc /configs
parent07b28af5b57338263e8aef5833e7d5085051a655 (diff)
make: Fold ASM_CFLAGS into DEFINES.
Every place that uses ASM_FLAGS already uses DEFINES. Not including it in DEFINES is just a way to screw up potential users, as I've done several times while working on the build system.
Diffstat (limited to 'configs')
-rw-r--r--configs/autoconf.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/configs/autoconf.in b/configs/autoconf.in
index 48f4504a234..6deedaa5e5a 100644
--- a/configs/autoconf.in
+++ b/configs/autoconf.in
@@ -11,13 +11,12 @@ CC = @CC@
CXX = @CXX@
OPT_FLAGS = @OPT_FLAGS@
ARCH_FLAGS = @ARCH_FLAGS@
-ASM_FLAGS = @ASM_FLAGS@
PIC_FLAGS = @PIC_FLAGS@
DEFINES = @DEFINES@
API_DEFINES = @API_DEFINES@
SHARED_GLAPI = @SHARED_GLAPI@
CFLAGS_NOVISIBILITY = @CPPFLAGS@ @CFLAGS@ \
- $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(ASM_FLAGS) $(DEFINES)
+ $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES)
CXXFLAGS_NOVISIBILITY = @CPPFLAGS@ @CXXFLAGS@ \
$(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES)
CFLAGS = $(CFLAGS_NOVISIBILITY) @VISIBILITY_CFLAGS@