The EXTRA_DIST of meson.build accidentally stomps another Freedreno file which should be disted. Change = to +=.
Signed-off-by: Daniel Stone <[email protected]> Fixes: 436ed65d38d4 ("autotools: include meson build files in tarball") Cc: Dylan Baker <[email protected]> Cc: Eric Engestrom <[email protected]> Cc: Emil Velikov <[email protected]> --- src/gallium/drivers/freedreno/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/freedreno/Makefile.am b/src/gallium/drivers/freedreno/Makefile.am index 4e7bf2caeb8..3bcac39484a 100644 --- a/src/gallium/drivers/freedreno/Makefile.am +++ b/src/gallium/drivers/freedreno/Makefile.am @@ -46,4 +46,4 @@ ir3_compiler_LDADD = \ $(GALLIUM_COMMON_LIB_DEPS) \ $(FREEDRENO_LIBS) -EXTRA_DIST = meson.build +EXTRA_DIST += meson.build -- 2.14.3 _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
