projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a80a3e4
)
meson: fix glxext.h install
author
Dylan Baker
<dylan@pnwbakers.com>
Wed, 29 Nov 2017 19:18:52 +0000
(11:18 -0800)
committer
Dylan 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
patch
|
blob
|
history
diff --git
a/include/meson.build
b/include/meson.build
index c6aa9248247b739020b2a929005c47f4641c6de3..35e7791507cbec19e55aeeccdbf4497d7006785f 100644
(file)
--- 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/gl
x
ext.h', 'GL/glx_mangle.h', subdir : 'GL')
endif
if with_osmesa != 'none'