<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">On 13-09-21 01:48 PM, Alan Coopersmith
      wrote:<br>
    </div>
    <blockquote cite="mid:523DDC00.20901@oracle.com" type="cite">On
      09/21/13 09:58 AM, Gaetan Nadon wrote:
      <br>
      <blockquote type="cite">Signed-off-by: Gaetan Nadon
        <a class="moz-txt-link-rfc2396E" href="mailto:memsize@videotron.ca"><memsize@videotron.ca></a>
        <br>
        ---
        <br>
          src/Makefile.am |    4 ++--
        <br>
          1 file changed, 2 insertions(+), 2 deletions(-)
        <br>
        <br>
        diff --git a/src/Makefile.am b/src/Makefile.am
        <br>
        index a466ae5..8c1a664 100644
        <br>
        --- a/src/Makefile.am
        <br>
        +++ b/src/Makefile.am
        <br>
        @@ -98,8 +98,8 @@ $(BUILT_HEADER): $(BUILT_SOURCE)
        <br>
        <br>
          $(BUILT_SOURCE):
        <br>
              $(AM_V_GEN)$(top_builddir)/util/makestrs -i $(top_srcdir)
        $(STRINGSABIOPTIONS) < $(STRING_LIST) > StringDefs.c
        <br>
        -    $(AM_V_at)mkdir -p $(top_builddir)/src
        <br>
        -    $(AM_V_at)mkdir -p $(top_builddir)/include/X11
        <br>
        +    $(AM_V_at)$(MKDIR_P) $(top_builddir)/src
        <br>
        +    $(AM_V_at)$(MKDIR_P) $(top_builddir)/include/X11
        <br>
              $(AM_V_at)cp StringDefs.h $(top_builddir)/include/X11
        <br>
              $(AM_V_at)cp Shell.h $(top_builddir)/include/X11
        <br>
              $(AM_V_at)rm StringDefs.h Shell.h
        <br>
        <br>
      </blockquote>
      <br>
      Do we need to add AC_PROG_MKDIR_P to configure.ac or xorg-macros,
      or does
      <br>
      automake automatically call it already?
      <br>
      <br>
    </blockquote>
    AC_PROG_MKDIR_P gets included very early in configure.ac, by
    AM_INIT_AUTOMAKE or something.<br>
    <br>
    It writes this line on the terminal when running autogen.sh:<br>
    <blockquote><tt>checking for a thread-safe mkdir -p... /bin/mkdir -p</tt><tt><br>
      </tt></blockquote>
    All X.Org modules have $(MKDIR_P) defined in the generated Makefile.<br>
    <br>
    <br>
    <br>
  </body>
</html>