Re: [Mesa-dev] [PATCH] meson: fix egl build for meson version < 0.43

2017-10-22 Thread Rhys Kidd
On 20 October 2017 at 20:34, Dylan Baker wrote: > Meson 0.43 added the ability to pass nested lists to > include_directories, so the code that we have works for 0.43, but not > for 0.42. This patch changes the include_directories list to be flat so > it works with 0.42 > > fixes: 108d257a16859898

Re: [Mesa-dev] [PATCH] meson: fix egl build for meson version < 0.43

2017-10-22 Thread Vinson Lee
On Fri, Oct 20, 2017 at 5:34 PM, Dylan Baker wrote: > Meson 0.43 added the ability to pass nested lists to > include_directories, so the code that we have works for 0.43, but not > for 0.42. This patch changes the include_directories list to be flat so > it works with 0.42 > > fixes: 108d257a16859

[Mesa-dev] [PATCH] meson: fix egl build for meson version < 0.43

2017-10-20 Thread Dylan Baker
Meson 0.43 added the ability to pass nested lists to include_directories, so the code that we have works for 0.43, but not for 0.42. This patch changes the include_directories list to be flat so it works with 0.42 fixes: 108d257a16859898f5c ("meson: build libEGL") Signed-off-by: Dylan Baker ---