From 5bdbf2dba3f7da4a593b286020eab0c7857e940c Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sat, 28 Sep 2013 15:26:37 -0400 Subject: [PATCH] xfree86: Use $(MKDIR_P) for better code portability Still true that we should not use the lower case $(mkdir_p) version. However, remove the 2005 comment as the MKDIR_P is widely used now. Reviewed-By: Matt Dew Signed-off-by: Gaetan Nadon Signed-off-by: Keith Packard --- hw/xfree86/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/xfree86/Makefile.am b/hw/xfree86/Makefile.am index 3410e4a8b..aed631bfe 100644 --- a/hw/xfree86/Makefile.am +++ b/hw/xfree86/Makefile.am @@ -84,9 +84,8 @@ os-support/solaris/solaris-@SOLARIS_INOUT_ARCH@.il: $(MAKE) $(AM_MAKEFLAGS) solaris-@SOLARIS_INOUT_ARCH@.il endif -# do not use $(mkdir_p) if you want automake 1.7 to work install-data-local: - mkdir -p $(DESTDIR)$(logdir) + $(AM_V_GEN)$(MKDIR_P) $(DESTDIR)$(logdir) if CYGWIN $(INSTALL_DATA) libXorg.exe.a $(DESTDIR)$(libdir)/libXorg.exe.a endif