summaryrefslogtreecommitdiffstats
path: root/contrib
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 /contrib
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 'contrib')
-rw-r--r--contrib/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
index f6e67d42..4abd2c7c 100644
--- a/contrib/Makefile.am
+++ b/contrib/Makefile.am
@@ -14,7 +14,7 @@ EXTRA_DIST = language.txt language50.txt \
iconv/make.sh
install-data-local:
- $(top_srcdir)/mkinstalldirs $(DESTDIR)$(docdir)/samples $(DESTDIR)$(docdir)/samples/iconv
+ $(MKDIR_P) $(DESTDIR)$(docdir)/samples $(DESTDIR)$(docdir)/samples/iconv
for f in $(SAMPLES) ; do \
$(INSTALL) -m 644 $(srcdir)/$$f $(DESTDIR)$(docdir)/samples ; \
done