diff options
author | Brian Paul <[email protected]> | 2009-02-25 08:45:08 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-02-25 08:45:08 -0700 |
commit | f2a5c6b42ce0272db10aff3fd476b1371912b0f4 (patch) | |
tree | 12b5feaef17766b8af8da9da6270d7868bc91038 /src | |
parent | c34c78b85381ced8bfa9f16faba9a5e9e6bf2a3a (diff) |
egl: remove compiler flags from CFLAGS
The incoming CFLAGS already has -fPIC and -Wall. Don't want -g here either.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/state_trackers/egl/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/state_trackers/egl/Makefile b/src/gallium/state_trackers/egl/Makefile index 537ca19cb25..692a3c8b76f 100644 --- a/src/gallium/state_trackers/egl/Makefile +++ b/src/gallium/state_trackers/egl/Makefile @@ -6,9 +6,7 @@ TOP = ../../../.. include ${TOP}/configs/current -# XXX: We shouldn't be specifying special compiler flags here. -# Flags should come from the configuration file instead. -CFLAGS:= -g -Wall -Werror-implicit-function-declaration -fPIC \ +CFLAGS := \ -I${GALLIUMDIR}/include \ -I${GALLIUMDIR}/auxiliary \ -I${TOP}/src/mesa/drivers/dri/common \ |