On Thursday, 2018-01-25 08:25:02 +0000, Daniel Stone wrote: > 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")
Oops :/ Thanks, I just double-checked the rest of this commit and this was the only place with this overwrite bug. Reviewed-by: Eric Engestrom <[email protected]> > 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
