From 2761549c1117df8ede365140971bcb8560ee4f1a Mon Sep 17 00:00:00 2001 From: aj Date: Mon, 10 Mar 2008 16:38:01 +0000 Subject: [PATCH] use new MKDIR_P macro, but depend on automake >= 1.10. git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@3417 c6295689-39f2-0310-b995-f0e70906c6a9 --- Makefile.am | 2 +- doc/Makefile.am | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index dcf11f60..8420bcc1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -AUTOMAKE_OPTIONS = foreign +AUTOMAKE_OPTIONS = foreign 1.10 ACLOCAL_AMFLAGS = -I aclocal MAINTAINERCLEANFILES = \ diff --git a/doc/Makefile.am b/doc/Makefile.am index bd3778a9..e8886134 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -28,7 +28,7 @@ if ENABLE_MAN html.out/*: api/xsl-stylesheets test -n "$(XSLTPROC)" -rm -fr html.tmp - $(mkdir_p) html.tmp + $(MKDIR_P) html.tmp $(XSLTPROC) --nonet --xinclude -o "html.out/api.html" "$(srcdir)/api/html.xsl" "$(srcdir)/api/api.xml" $(XSLTPROC) --nonet --xinclude -o "html.out/tools.html" "$(srcdir)/api/html.xsl" "$(srcdir)/tools/tools.xml" mv html.tmp html.out @@ -36,7 +36,7 @@ html.out/*: api/xsl-stylesheets man.out/*.1: api/xsl-stylesheets test -n "$(XSLTPROC)" -rm -fr man.tmp - $(mkdir_p) man.tmp + $(MKDIR_P) man.tmp $(XSLTPROC) --nonet --xinclude -o "man.out/" "$(srcdir)/api/man.xsl" "$(srcdir)/api/api.xml" $(XSLTPROC) --nonet --xinclude -o "man.out/" "$(srcdir)/api/man.xsl" "$(srcdir)/tools/tools.xml" mv man.tmp man.out