configure.ac: Don't duplicate CFLAGS
authorMatt Turner <mattst88@gmail.com>
Wed, 1 Aug 2012 15:38:35 +0000 (08:38 -0700)
committerMatt Turner <mattst88@gmail.com>
Wed, 1 Aug 2012 17:12:50 +0000 (10:12 -0700)
commit33ae29c93b8f70a86dcedc495dd658a5d5679db3
treef6f80ccf4298c582f9fcfb64a19c6d14b904c4f1
parent14819eb58831ce197afe8abe8837057e02475d94
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 <ajax@redhat.com>
configure.ac