diff options
author | Matt Turner <[email protected]> | 2012-08-01 08:38:35 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-08-01 10:12:50 -0700 |
commit | 33ae29c93b8f70a86dcedc495dd658a5d5679db3 (patch) | |
tree | f6f80ccf4298c582f9fcfb64a19c6d14b904c4f1 | |
parent | 14819eb58831ce197afe8abe8837057e02475d94 (diff) |
configure.ac: Don't duplicate CFLAGS
These assignments caused CFLAGS specified on the configure line to
appear twice in the final CFLAGS. Removing them makes the behavior
reasonable -- USER_CFLAGS are appended at the end of CFLAGS, allowing
the builder to override flags added by configure.ac like
-fno-strict-aliasing.
Reviewed-by: Adam Jackson <[email protected]>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 87fb8596935..2b5abb4e1dd 100644 --- a/configure.ac +++ b/configure.ac @@ -26,10 +26,6 @@ m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_PREREQ([2.2]) LT_INIT([disable-static]) -dnl Save user CFLAGS and CXXFLAGS so one can override the default ones -USER_CFLAGS="$CFLAGS" -USER_CXXFLAGS="$CXXFLAGS" - dnl Versions for external dependencies LIBDRM_REQUIRED=2.4.24 LIBDRM_RADEON_REQUIRED=2.4.31 |