diff options
author | Emil Velikov <[email protected]> | 2014-03-03 01:56:40 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-03-11 12:50:41 +0000 |
commit | c690f8dd9b3cc81d130891ef5248863e0efe6f5a (patch) | |
tree | 51e2c0036e35b0f1f361d6152230c394ba336806 /src/mesa/drivers | |
parent | e6c565fcc591f4856eff512f72e961ff0686475c (diff) |
automake: use MKDIR_P when possible
Use the automake predefined macro over hardcoding mkdir -p everywhere.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Jon TURNEY <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/common/xmlpool/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/xmlpool/Makefile.am b/src/mesa/drivers/dri/common/xmlpool/Makefile.am index 0908c8264ff..57e604845da 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 |