Skip to content

Commit

Permalink
automake: use AC_PROG_MKDIR_P instead of AM_PROG_MKDIR_P
Browse files Browse the repository at this point in the history
autoreconf emits the warning below. It can be resolved by following the
advice provided by the warning. Though this is just a warning, it is fatal
on Ubuntu because warnings are treated as errors.
 See: https://bugs.launchpad.net/ubuntu/+source/partclone/+bug/1283294

Warnings from autoreconf:
  configure.ac:4: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and its use is discouraged.
  configure.ac:4: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead,
  configure.ac:4: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.
  • Loading branch information
dannf committed Mar 7, 2014
1 parent 38b880b commit e163510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion m4/po.m4
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ AC_DEFUN([AM_PO_SUBDIRS],
[
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
AC_REQUIRE([AC_PROG_INSTALL])dnl
AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
AC_REQUIRE([AC_PROG_MKDIR_P])dnl defined by automake
AC_REQUIRE([AM_NLS])dnl
dnl Perform the following tests also if --disable-nls has been given,
Expand Down

0 comments on commit e163510

Please sign in to comment.