meson: fix glprocs.h generator

There was a typo that causes the generated file to be called gl_procs.h
instead.

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
This commit is contained in:
Dylan Baker
2017-10-20 22:22:01 -07:00
parent 1f11ac4395
commit 63c360d7b2
+3 -3
View File
@@ -153,10 +153,10 @@ glapi_mapi_tmp_h = custom_target(
capture : true,
)
gl_procs_h = custom_target(
'gl_procs.h',
glprocs_h = custom_target(
'glprocs.h',
input : ['gl_procs.py', 'gl_and_es_API.xml'],
output : 'gl_procs.h',
output : 'glprocs.h',
command : [prog_python2, '@INPUT0@', '-c', '-f', '@INPUT1@'],
depend_files : glapi_gen_depends,
capture : true,