From 51d63a9d82dc4f2407862131bbf3e5d72b4505d3 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sat, 21 Sep 2013 12:52:15 -0400 Subject: Use $(MKDIR_P) in Makefile.am for better code portability Reviewed-by: Alan Coopersmith Signed-off-by: Gaetan Nadon --- src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index a466ae5..8c1a664 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -98,8 +98,8 @@ $(BUILT_HEADER): $(BUILT_SOURCE) $(BUILT_SOURCE): $(AM_V_GEN)$(top_builddir)/util/makestrs -i $(top_srcdir) $(STRINGSABIOPTIONS) < $(STRING_LIST) > StringDefs.c - $(AM_V_at)mkdir -p $(top_builddir)/src - $(AM_V_at)mkdir -p $(top_builddir)/include/X11 + $(AM_V_at)$(MKDIR_P) $(top_builddir)/src + $(AM_V_at)$(MKDIR_P) $(top_builddir)/include/X11 $(AM_V_at)cp StringDefs.h $(top_builddir)/include/X11 $(AM_V_at)cp Shell.h $(top_builddir)/include/X11 $(AM_V_at)rm StringDefs.h Shell.h -- cgit v1.2.3