diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-11-29 11:18:52 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-11-30 10:00:49 -0800 |
commit | 7776dc32eb10c8cf4ec9720e1c8a3bd8fd3a7d1d (patch) | |
tree | a8448f9bb12b1ea61184a31c3f97ef1afa9bdccd /include | |
parent | a80a3e4cbb7859e98b3559791b4b89ee4021f4dd (diff) |
meson: fix glxext.h install
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/meson.build b/include/meson.build index c6aa924824..35e7791507 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' |