summaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2015-07-02 11:21:19 -0700
committerKevin McCarthy <kevin@8t8.us>2015-07-02 11:21:19 -0700
commit049af0ec063f472db509204ae6dab70bcec5949a (patch)
treea5d3c7bfe184b7c5d23a2363b6b05f3b90d94b1e /m4
parent8a07da9fd6f77c10c1183bbeb70bcfe4f4c85a84 (diff)
Convert from using mkinstalldirs to $(MKDIR_P).
The automake mkinstalldirs script is now deprecated. "install-sh -d" can be used in place. Configure.ac already includes AC_PROG_INSTALL, which will ensure install-sh is bundled. Add AC_PROG_MKDIR_P, which will set $(MKDIR_P) to either a thread-safe "mkdir -p" or will fall back to using install-sh.
Diffstat (limited to 'm4')
-rw-r--r--m4/gettext.m412
1 files changed, 0 insertions, 12 deletions
diff --git a/m4/gettext.m4 b/m4/gettext.m4
index a7d87fd1..b6d1648b 100644
--- a/m4/gettext.m4
+++ b/m4/gettext.m4
@@ -358,18 +358,6 @@ strdup strtoul tsearch __argz_count __argz_stringify __argz_next])
fi
fi
- dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
- dnl find the mkinstalldirs script in another subdir but $(top_srcdir).
- dnl Try to locate is.
- MKINSTALLDIRS=
- if test -n "$ac_aux_dir"; then
- MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
- fi
- if test -z "$MKINSTALLDIRS"; then
- MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
- fi
- AC_SUBST(MKINSTALLDIRS)
-
dnl Enable libtool support if the surrounding package wishes it.
INTL_LIBTOOL_SUFFIX_PREFIX=ifelse([$1], use-libtool, [l], [])
AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX)