diff options
author | Dylan Baker <[email protected]> | 2017-11-29 11:16:59 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-11-30 10:00:49 -0800 |
commit | a80a3e4cbb7859e98b3559791b4b89ee4021f4dd (patch) | |
tree | 2910e4cc8fdcede4fedde31f9b4ab42766e3bdf7 /include | |
parent | 186adc514b820dd736cc680a6cf058b7fbb31ebf (diff) |
meson: fix GLES3/gl31.h install
This is a typo, gl32.h is installed twice.
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.build | 2 |
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', ) |