meson: fix glxext.h install
authorDylan Baker <dylan@pnwbakers.com>
Wed, 29 Nov 2017 19:18:52 +0000 (11:18 -0800)
committerDylan Baker <dylan@pnwbakers.com>
Thu, 30 Nov 2017 18:00:49 +0000 (10:00 -0800)
Another typo, the glext.h header was being install instead.

Reported-by: Marc Dietrich <marvin24@gmx.de>
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
include/meson.build

index c6aa924..35e7791 100644 (file)
@@ -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'