[Mesa-dev] [PATCH 2/4] mesa: fix api source gen for out-of-tree builds

nobled nobled at dreamwidth.org
Sun Jul 1 11:10:38 PDT 2012


Add $(srcdir) where needed.
---
 src/mesa/Makefile.am |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am
index e52678d..44ec619 100644
--- a/src/mesa/Makefile.am
+++ b/src/mesa/Makefile.am
@@ -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 $<
-- 
1.7.9.5


More information about the mesa-dev mailing list