From: jcorgan Date: Mon, 11 May 2009 16:03:59 +0000 (+0000) Subject: Backport automake 2.60's AC_PROG_MKDIR_P so we can continue to support automake 2... X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=63f2a7322a7630c7c19567b8486a52c04156cbbd;p=debian%2Fgnuradio Backport automake 2.60's AC_PROG_MKDIR_P so we can continue to support automake 2.57 (Achilleas Anastasopoulos) git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11001 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/configure.ac b/configure.ac index 6b6dc161..f0bc516f 100644 --- a/configure.ac +++ b/configure.ac @@ -82,7 +82,18 @@ AM_PROG_AS AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_INSTALL + +# AC_PROG_MKDIR_P +# is a backport of autoconf-2.60's AC_PROG_MKDIR_P. +# Remove this macro when we can assume autoconf >= 2.60. +m4_ifdef([AC_PROG_MKDIR_P], [], [ + AC_DEFUN([AC_PROG_MKDIR_P], + [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake + MKDIR_P='$(mkdir_p)' + AC_SUBST([MKDIR_P])]) +]) AC_PROG_MKDIR_P + AC_PATH_PROG([RM_PROG], [rm]) AC_LIBTOOL_WIN32_DLL