diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-10 23:59:02 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-10 23:59:02 +0200 |
commit | 74be388e1871d54940ef5d3f8650efec37215ef0 (patch) | |
tree | 47112a493e2f06b7ae6cdb70e40fa6e7413a63f6 | |
parent | a5a167fc64027b33c29675651ade27e3a27b0882 (diff) | |
download | automake-branch-1.13.2.tar.gz |
warns: don't tell AM_PROG_MKDIR_P is going to be removedbranch-1.13.2
That is no longer true. For a more extended rationale, see file
'PLANS/obsolete-removed/am-prog-mkdir-p.txt' in the maint branch
(as of commit v1.13.1d-132-g90ec3fe).
* automake.in (scan_autoconf_traces): So adjust the warning message
here.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r-- | automake.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/automake.in b/automake.in index d22065a89..ef2cf6d92 100644 --- a/automake.in +++ b/automake.in @@ -5302,10 +5302,8 @@ sub scan_autoconf_traces ($) } elsif ($macro eq 'AM_PROG_MKDIR_P') { - # FIXME: we are no longer going to remove this! adjust warning - # FIXME: message accordingly. msg 'obsolete', $where, <<'EOF'; -The 'AM_PROG_MKDIR_P' macro is deprecated, and will soon be removed. +The 'AM_PROG_MKDIR_P' macro is deprecated, and its use is discouraged. You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead, and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files. EOF |