From c690f8dd9b3cc81d130891ef5248863e0efe6f5a Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 3 Mar 2014 01:56:40 +0000 Subject: automake: use MKDIR_P when possible Use the automake predefined macro over hardcoding mkdir -p everywhere. Signed-off-by: Emil Velikov Reviewed-by: Jon TURNEY --- src/mesa/drivers/dri/common/xmlpool/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/drivers/dri/common') diff --git a/src/mesa/drivers/dri/common/xmlpool/Makefile.am b/src/mesa/drivers/dri/common/xmlpool/Makefile.am index 0908c82..57e6048 100644 --- a/src/mesa/drivers/dri/common/xmlpool/Makefile.am +++ b/src/mesa/drivers/dri/common/xmlpool/Makefile.am @@ -69,7 +69,7 @@ options.h: t_options.h $(MOS) @mo="$@"; \ lang=$${mo%%/*}; \ echo "Updating ($$lang) $@ from $?."; \ - mkdir -p $$lang/LC_MESSAGES; \ + $(MKDIR_P) $$lang/LC_MESSAGES; \ msgfmt -o $@ $? # Use this target to create or update .po files with new messages in -- cgit v1.1