[Mesa-dev] [PATCH] i965/build: Fix FTBFS due to incorrect variable initialisation
Kai Wasserbäch
kai at dev.carbon-project.org
Thu Apr 21 15:21:10 UTC 2016
Broken since b27c85c4c089109339fc37135d0a4d2574024632
Cc: Rob Herring <robh at kernel.org>
Cc: Emil Velikov <emil.l.velikov at gmail.com>
Signed-off-by: Kai Wasserbäch <kai at dev.carbon-project.org>
---
Hi,
without this I'm getting error during autoreconf:
src/mesa/drivers/dri/i965/Makefile.am:57: error: BUILT_SOURCES must be set with '=' before using '+='
src/mesa/drivers/dri/i965/Makefile.am:58: error: CLEANFILES must be set with '=' before using '+='
Please push this for me, if you accept it.
Cheers,
Kai
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 \
--
2.8.0.rc3
More information about the mesa-dev
mailing list