* man/local.mk (.x.1): Use '$(MKDIR_P)' rather than bare 'mkdir'
where appropriate.

Reported-by: Jim Meyering <[email protected]>
---
 man/local.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man/local.mk b/man/local.mk
index 3074511..8904eb5 100644
--- a/man/local.mk
+++ b/man/local.mk
@@ -178,7 +178,7 @@ man/yes.1:       src/yes.c
        rm -f $@ $@-t                                                   \
          && t=$*.td                                                    \
          && rm -rf $$t                                                 \
-         && mkdir $$t                                                  \
+         && $(MKDIR_P) $$t                                             \
          && (cd $$t && $(LN_S) $(abs_top_builddir)/src/$$prog $$name)  \
          && $(PERL) -- $(srcdir)/man/help2man                          \
                     --source='$(PACKAGE_STRING)'                       \
-- 
1.7.12


Reply via email to