Module: Mesa Branch: master Commit: a80a3e4cbb7859e98b3559791b4b89ee4021f4dd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a80a3e4cbb7859e98b3559791b4b89ee4021f4dd
Author: Dylan Baker <[email protected]> Date: Wed Nov 29 11:16:59 2017 -0800 meson: fix GLES3/gl31.h install This is a typo, gl32.h is installed twice. Reported-by: Marc Dietrich <[email protected]> Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> --- include/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/meson.build b/include/meson.build index b5f533bd18..c6aa924824 100644 --- a/include/meson.build +++ b/include/meson.build @@ -34,7 +34,7 @@ if with_gles2 subdir : 'GLES2', ) install_headers( - 'GLES3/gl3.h', 'GLES3/gl32.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h', + 'GLES3/gl3.h', 'GLES3/gl31.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h', 'GLES3/gl3platform.h', subdir : 'GLES3', ) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
