Mesa (master): build: Use MKDIR_P in src/mesa/Makefile.am

Matt Turner mattst88 at kemper.freedesktop.org
Tue Aug 14 18:33:34 UTC 2012


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

Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug  1 14:26:41 2012 -0700

build: Use MKDIR_P in src/mesa/Makefile.am

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/Makefile.am |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am
index 20814c0..f1cd6d6 100644
--- a/src/mesa/Makefile.am
+++ b/src/mesa/Makefile.am
@@ -85,11 +85,11 @@ main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py m
 	  -S $(srcdir)/main/APIspec.xml -V GLES2.0 > $@
 
 program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y
-	mkdir -p program
+	$(MKDIR_P) program
 	$(AM_V_GEN) $(YACC) -v -d --output=program/program_parse.tab.c $<
 
 program/lex.yy.c: program/program_lexer.l
-	mkdir -p program
+	$(MKDIR_P) program
 	$(AM_V_GEN) $(LEX) --never-interactive --outfile=$@ $<
 
 noinst_LTLIBRARIES = libmesa.la libmesagallium.la




More information about the mesa-commit mailing list