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 <[email protected]> > 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)
