automake: Fix typo in MSVC2008 compat flags.
authorJose Fonseca <jfonseca@vmware.com>
Wed, 2 Dec 2015 17:56:13 +0000 (17:56 +0000)
committerJose Fonseca <jfonseca@vmware.com>
Thu, 3 Dec 2015 22:00:49 +0000 (22:00 +0000)
It should be MSVC2008_COMPAT_CFLAGS and not MSVC2008_COMPAT_CXXFLAGS.

This is why the recent util_blitter breakage went unnoticed on autotools
builds.

Trivial.

src/gallium/auxiliary/Makefile.am

index ee296ce..7b026b5 100644 (file)
@@ -9,7 +9,7 @@ AM_CFLAGS = \
        -I$(top_srcdir)/src/gallium/auxiliary/util \
        $(GALLIUM_CFLAGS) \
        $(VISIBILITY_CFLAGS) \
-       $(MSVC2008_COMPAT_CXXFLAGS)
+       $(MSVC2008_COMPAT_CFLAGS)
 
 AM_CXXFLAGS = \
        $(VISIBILITY_CXXFLAGS) \