bug-libunistring
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-libunistring] [patch] fix libunistring build with automake 1.12


From: Jim Meyering
Subject: Re: [bug-libunistring] [patch] fix libunistring build with automake 1.12.1
Date: Tue, 10 Jul 2012 13:22:54 +0200

Kamble, Nitin A wrote:
> automake 1.12 has deprecated use of mkdir_p, and it recommends
> use of MKDIR_P instead. Changed the code to avoid these kind
> of warning-errors.
>
> | make[2]:
> | 
> /build/tmp/work/x86_64-linux/libunistring-native-0.9.3-r2/image/srv/home/nitin/builds2/build0/tmp/sysroots/x86_64-linux/usr/share/doc/libunistring:
> | Command not found
> | make[2]: *** [install-html-split] Error 127

Thanks for the report.
That was due to a bug in automake-1.12.
It has been fixed in the just-released 1.12.2.

> Signed-Off-By: Nitin A Kamble <address@hidden>
> 2012/07/10
>
> Index: libunistring-0.9.3/doc/Makefile.am
> ===================================================================
> --- libunistring-0.9.3.orig/doc/Makefile.am
> +++ libunistring-0.9.3/doc/Makefile.am
> @@ -87,7 +87,7 @@ TEXI2DVI = @TEXI2DVI@ $(TEXINCLUDES)
>  # The install-dvi target is already defined by automake.
>
>  installdirs-dvi:
> -       $(mkdir_p) $(DESTDIR)$(dvidir)
> +       $(MKDIR_P) $(DESTDIR)$(dvidir)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]