diff options
author | Eric Anholt <[email protected]> | 2012-07-26 09:32:56 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-07-26 17:30:06 -0700 |
commit | 87a1c4f233f597b8b366f7a2c0f1c5b7124d8d8e (patch) | |
tree | 7756a8736ae3d0ff0e7095a830399fc063ae1ba5 /configs | |
parent | 4df2848786d4778a2ce7dbf2e046e191036ccb56 (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 <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/current.in | 5 |
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@ |