diff options
author | Emil Velikov <[email protected]> | 2016-04-21 16:48:34 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-04-21 16:48:34 +0100 |
commit | 9dcb3dfb23c98f029a780a22a4cb6aeb8db384d4 (patch) | |
tree | af35528133ef38b3bc6eb675e12ce9184ab687fc /src/mesa | |
parent | 1ba203a0855664a1625bf37f4403c19d2f97810c (diff) |
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 <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
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 \ |