From: Emil Velikov Date: Thu, 21 Apr 2016 15:48:34 +0000 (+0100) Subject: i965: automake: remove gratuitous "+" during variable assignment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dcb3dfb23c98f029a780a22a4cb6aeb8db384d4;p=mesa.git i965: automake: remove gratuitous "+" during variable assignment There is not initial assignment, thus appending to it does not work. Fixes: b27c85c4c08 "i965: add build rule for brw_nir_trig_workarounds.c" Signed-off-by: Emil Velikov --- diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index c7f055d5402..ba3aa267bbf 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -54,8 +54,8 @@ libi965_compiler_la_SOURCES = \ $(i965_compiler_FILES) \ $(i965_compiler_GENERATED_FILES) -BUILT_SOURCES += $(i965_compiler_GENERATED_FILES) -CLEANFILES += $(BUILT_SOURCES) +BUILT_SOURCES = $(i965_compiler_GENERATED_FILES) +CLEANFILES = $(BUILT_SOURCES) TEST_LIBS = \ libi965_compiler.la \