@command{dirname} command.
@end defmac
+@defmac AS_MKDIR_P (@var{filename})
+@msindex MKDIR_P
+Make the directory @var{filename}, including intervening directories
+as necessary. This is equivalent to @samp{mkdir -p @var{filename}},
+except that it is portable to older versions of @command{mkdir} that
+lack support for the @option{-p} option.
+
@c=================================================== Writing Autoconf Macros.
@node Writing Autoconf Macros
systems. DJGPP versions 2.04 and later have full symlink support.
+@item @command{mkdir}
+@c ------------------
+@prindex @command{mkdir}
+@cindex Making directories
+None of @command{mkdir}'s options are portable. Instead of
+@samp{mkdir -p @var{filename}}, you should use use
+@code{AS_MKDIR_P(@var{filename})} (@pxref{Programming in M4sh}).
+
+
@item @command{mv}
@c ---------------
@prindex @command{mv}