glsl2/Makefile: Append to DEFINES rather than replacing them.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 28 Jul 2010 23:44:56 +0000 (16:44 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 28 Jul 2010 23:48:04 +0000 (16:48 -0700)
Otherwise, we lose DEBUG, which causes mtypes.h to set NDEBUG, which
causes assertions to not happen, which is no fun for anyone.

src/glsl/Makefile

index 4c85af8906d0a1df4425d79c8d8881a651113667..cbdd0f9a7a3fbbbfedf64274c14d8da72fb6ac96 100644 (file)
@@ -82,7 +82,7 @@ GLSL2_OBJECTS = \
 
 ### Basic defines ###
 
-DEFINES = \
+DEFINES += \
        $(LIBRARY_DEFINES) \
        $(API_DEFINES)