mesa: fix api source gen for out-of-tree builds
authorDylan Noblesmith <nobled@dreamwidth.org>
Thu, 28 Jun 2012 20:27:15 +0000 (20:27 +0000)
committerDylan Noblesmith <nobled@dreamwidth.org>
Mon, 2 Jul 2012 15:14:27 +0000 (15:14 +0000)
Add $(srcdir) where needed.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/Makefile.am

index e52678d5831ccefaba9df8c8f8dccf91025771e2..44ec619cda83e85710aa10b3616f9a51148e7f10 100644 (file)
@@ -78,10 +78,12 @@ main/api_exec_es2_remap_helper.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_remap_d
 main/api_exec_es2.o: main/api_exec_es2_dispatch.h main/api_exec_es2_remap_helper.h
 
 main/api_exec_es1.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
-       $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.xml -V GLES1.1 > $@
+       $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py \
+         -S $(srcdir)/main/APIspec.xml -V GLES1.1 > $@
 
 main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
-       $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.xml -V GLES2.0 > $@
+       $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py \
+         -S $(srcdir)/main/APIspec.xml -V GLES2.0 > $@
 
 program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y
        $(YACC) -v -d --output=program/program_parse.tab.c $<