summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-11-29 11:16:59 -0800
committerDylan Baker <dylan@pnwbakers.com>2017-11-30 10:00:49 -0800
commita80a3e4cbb7859e98b3559791b4b89ee4021f4dd (patch)
tree2910e4cc8fdcede4fedde31f9b4ab42766e3bdf7 /include
parent186adc514b820dd736cc680a6cf058b7fbb31ebf (diff)
meson: fix GLES3/gl31.h install
This is a typo, gl32.h is installed twice. 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.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/meson.build b/include/meson.build
index b5f533bd185..c6aa9248247 100644
--- a/include/meson.build
+++ b/include/meson.build
@@ -34,7 +34,7 @@ if with_gles2
subdir : 'GLES2',
)
install_headers(
- 'GLES3/gl3.h', 'GLES3/gl32.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
+ 'GLES3/gl3.h', 'GLES3/gl31.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
'GLES3/gl3platform.h',
subdir : 'GLES3',
)