From b1aba910b3e2352b5b925b118072bf4279b0a26a Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 6 May 2013 11:21:08 +0200 Subject: [PATCH] build: remove refs to obsolescent 'mkinstalldir' script and variable * .gitignore: Here. * Makefile.am (check-coverage-run): Use $(MKDIR_P) rather than $(mkinstalldirs). Signed-off-by: Stefano Lattarini --- .gitignore | 1 - Makefile.am | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 033b037d..3c0d75bd 100644 --- a/.gitignore +++ b/.gitignore @@ -53,7 +53,6 @@ Makefile.in /build-aux/install-sh /build-aux/mdate-sh /build-aux/missing -/build-aux/mkinstalldirs /config.cache /config.log /config.status diff --git a/Makefile.am b/Makefile.am index e1ec0d2c..8f8e7c7f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -139,7 +139,7 @@ PERL_COVERAGE_FLAGS = -MDevel::Cover=-db,$(PERL_COVERAGE_DB),-silent,on,-summary PERL_COVER = cover check-coverage-run: all - $(mkinstalldirs) $(PERL_COVERAGE_DB) + $(MKDIR_P) $(PERL_COVERAGE_DB) PERL5OPT="$(PERL_COVERAGE_FLAGS)"; export PERL5OPT; \ $(MAKE) $(AM_MAKEFLAGS) check -- 2.47.2