meson: fix glprocs.h generator
authorDylan Baker <dylan@pnwbakers.com>
Sat, 21 Oct 2017 05:22:01 +0000 (22:22 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Fri, 27 Oct 2017 18:06:07 +0000 (11:06 -0700)
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>
src/mapi/glapi/gen/meson.build

index 4360346edad4aab16de818dfeecdfa66d21a5cb2..69ef57bc1460e8f924115f4f59a60e648656685a 100644 (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,