On Mon, May 4, 2009 at 12:56 PM, Eric Blossom wrote:
> On Mon, May 04, 2009 at 03:37:05PM -0400, Achilleas Anastasopoulos wrote:
>> I found out that
>>
>> AC_PROG_MKDIR_P is defined only on autoconf 2.60, while
>> gnuradio requires only autoconf 2.57 and above.
>>
>> After a google search, I foun
On Mon, May 04, 2009 at 03:37:05PM -0400, Achilleas Anastasopoulos wrote:
> I found out that
>
> AC_PROG_MKDIR_P is defined only on autoconf 2.60, while
> gnuradio requires only autoconf 2.57 and above.
>
> After a google search, I found this patch:
>
> # AC_PROG_MKDIR_P
> # is a backport of autoco
I found out that
AC_PROG_MKDIR_P is defined only on autoconf 2.60, while
gnuradio requires only autoconf 2.57 and above.
After a google search, I found this patch:
# 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_i
After a bit of searching I think the problem is as follows:
Since AC_PROG_MKDIR_P is reported undefined, this propagtes to the
corresponding Makefiles,
eg in
gnuradio-corse/docs/Makefile
which contains the line
MKDIR_P =
so later on when it tries to execute
$(MKDIR_P) html
in order to cr