From: Dylan Baker Date: Wed, 29 Nov 2017 19:18:52 +0000 (-0800) Subject: meson: fix glxext.h install X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7776dc32eb10c8cf4ec9720e1c8a3bd8fd3a7d1d;p=mesa.git meson: fix glxext.h install Another typo, the glext.h header was being install instead. Reported-by: Marc Dietrich Signed-off-by: Dylan Baker Reviewed-by: Eric Engestrom --- diff --git a/include/meson.build b/include/meson.build index c6aa9248247..35e7791507c 100644 --- a/include/meson.build +++ b/include/meson.build @@ -52,7 +52,7 @@ if with_opengl endif if with_glx != 'disabled' - install_headers('GL/glx.h', 'GL/glext.h', 'GL/glx_mangle.h', subdir : 'GL') + install_headers('GL/glx.h', 'GL/glxext.h', 'GL/glx_mangle.h', subdir : 'GL') endif if with_osmesa != 'none'