summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2012-07-26 09:32:56 -0700
committerEric Anholt <eric@anholt.net>2012-07-26 17:30:06 -0700
commit87a1c4f233f597b8b366f7a2c0f1c5b7124d8d8e (patch)
tree7756a8736ae3d0ff0e7095a830399fc063ae1ba5 /configs
parent4df2848786d4778a2ce7dbf2e046e191036ccb56 (diff)
automake: Remove ARCH_FLAGS.
In all current uses, it was appended to CFLAGS, which already had -m32. If you want to do some other flag supplied to compiler invocations, there's CFLAGS/CXXFLAGS. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'configs')
-rw-r--r--configs/current.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/configs/current.in b/configs/current.in
index 9785a5a9cd3..1840632e7ea 100644
--- a/configs/current.in
+++ b/configs/current.in
@@ -10,15 +10,14 @@ CONFIG_NAME = autoconf
CC = @CC@
CXX = @CXX@
OPT_FLAGS = @OPT_FLAGS@
-ARCH_FLAGS = @ARCH_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) $(DEFINES)
+ $(OPT_FLAGS) $(PIC_FLAGS) $(DEFINES)
CXXFLAGS_NOVISIBILITY = @CPPFLAGS@ @CXXFLAGS@ \
- $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES)
+ $(OPT_FLAGS) $(PIC_FLAGS) $(DEFINES)
CFLAGS = $(CFLAGS_NOVISIBILITY) @VISIBILITY_CFLAGS@
CXXFLAGS = $(CXXFLAGS_NOVISIBILITY) @VISIBILITY_CXXFLAGS@
LDFLAGS = @LDFLAGS@