Mesa (master): meson: fix glprocs.h generator

Dylan Baker dbaker at kemper.freedesktop.org
Fri Oct 27 18:26:39 UTC 2017


Module: Mesa
Branch: master
Commit: 63c360d7b27caa2f89a382d7d77a145bb1441f66
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=63c360d7b27caa2f89a382d7d77a145bb1441f66

Author: Dylan Baker <dylan at pnwbakers.com>
Date:   Fri Oct 20 22:22:01 2017 -0700

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 at intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>

---

 src/mapi/glapi/gen/meson.build | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mapi/glapi/gen/meson.build b/src/mapi/glapi/gen/meson.build
index 4360346eda..69ef57bc14 100644
--- a/src/mapi/glapi/gen/meson.build
+++ b/src/mapi/glapi/gen/meson.build
@@ -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,




More information about the mesa-commit mailing list