Skip to content

Commit

Permalink
build: remove refs to obsolescent 'mkinstalldir' script and variable
Browse files Browse the repository at this point in the history
* .gitignore: Here.
* Makefile.am (check-coverage-run): Use $(MKDIR_P) rather than
$(mkinstalldirs).

Signed-off-by: Stefano Lattarini <[email protected]>
  • Loading branch information
slattarini committed May 6, 2013
1 parent ef573a2 commit b1aba91
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b1aba91

Please sign in to comment.