summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDylan Baker <[email protected]>2017-11-29 11:18:52 -0800
committerDylan Baker <[email protected]>2017-11-30 10:00:49 -0800
commit7776dc32eb10c8cf4ec9720e1c8a3bd8fd3a7d1d (patch)
treea8448f9bb12b1ea61184a31c3f97ef1afa9bdccd /include
parenta80a3e4cbb7859e98b3559791b4b89ee4021f4dd (diff)
meson: fix glxext.h install
Another typo, the glext.h header was being install instead. Reported-by: Marc Dietrich <[email protected]> Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/meson.build2
1 files changed, 1 insertions, 1 deletions
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'