Mesa (master): i965: automake: remove gratuitous "+" during variable assignment

Emil Velikov evelikov at kemper.freedesktop.org
Thu Apr 21 15:50:06 UTC 2016


Module: Mesa
Branch: master
Commit: 9dcb3dfb23c98f029a780a22a4cb6aeb8db384d4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9dcb3dfb23c98f029a780a22a4cb6aeb8db384d4

Author: Emil Velikov <emil.velikov at collabora.com>
Date:   Thu Apr 21 16:48:34 2016 +0100

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 <emil.velikov at collabora.com>

---

 src/mesa/drivers/dri/i965/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am
index c7f055d..ba3aa26 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 \




More information about the mesa-commit mailing list