Building FDRPG sources produces the following error message:
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:20: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and its use
is discouraged.
configure.ac:20: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro
instead,
configure.ac:20: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am
files.
google search for 'AM_PROG_MKDIR_P' found the web page:
http://www.gnu.org/software/automake/manual/html_node/Obsolete-Macros.html
Page describes how this macro was obsolete and was to be replaced w/
'AC_PROG_MKDIR_P'. Also, the page mentions occurrances of obsolete macro's
output variable $(mkdir_p) was to be replaced with MKDIR_P.
A review of clean sources found no references to obsolete macro but several
instances of $(mkdir_p)
po/po-src/Rules-others
33: $(mkdir_p) $$dir; \
68: $(mkdir_p) tx; \
103: $(mkdir_p) tx; \
133: $(mkdir_p) tx; \
po/po-dialogs/Rules-others
33: $(mkdir_p) $$dir; \
70: $(mkdir_p) tx; \
109: $(mkdir_p) tx; \
145: $(mkdir_p) tx; \
po/po-data/Rules-others
33: $(mkdir_p) $$dir; \
70: $(mkdir_p) tx; \
109: $(mkdir_p) tx; \
145: $(mkdir_p) tx; \
po/Makefile.am
64: $(mkdir_p) tx; \
These files are all under control of the Translation team.
|