From 71b44b51f5c4018f68dd29ac3a6ff442545785af Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 17 Dec 2003 04:18:58 +0000 Subject: 2003-12-17 Ralf Corsepius * mptests.am: Use $(mkdir_p) instead of $(mkinstalldirs). --- testsuites/mptests/ChangeLog | 4 ++++ testsuites/mptests/mptests.am | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/testsuites/mptests/ChangeLog b/testsuites/mptests/ChangeLog index bb9c8584f7..0331dea79c 100644 --- a/testsuites/mptests/ChangeLog +++ b/testsuites/mptests/ChangeLog @@ -1,3 +1,7 @@ +2003-12-17 Ralf Corsepius + + * mptests.am: Use $(mkdir_p) instead of $(mkinstalldirs). + 2003-12-12 Ralf Corsepius * configure.ac: Require automake >= 1.8, autoconf >= 2.59. diff --git a/testsuites/mptests/mptests.am b/testsuites/mptests/mptests.am index 789e4efaa2..64b2c3d987 100644 --- a/testsuites/mptests/mptests.am +++ b/testsuites/mptests/mptests.am @@ -3,19 +3,19 @@ project_bspdir=$(PROJECT_ROOT)/@RTEMS_BSP@ $(project_bspdir)/tests: - @$(mkinstalldirs) $@ + @$(mkdir_p) $@ $(project_bspdir)/tests/$(TEST)-node$(NODE)$(LIB_VARIANT).exe: $(PGM) $(INSTALL_PROGRAM) $< $@ $(project_bspdir)/tests/screens: - @$(mkinstalldirs) $@ + @$(mkdir_p) $@ $(project_bspdir)/tests/screens/mptests: - @$(mkinstalldirs) $@ + @$(mkdir_p) $@ $(project_bspdir)/tests/screens/mptests/node$(NODE): - @$(mkinstalldirs) $@ + @$(mkdir_p) $@ $(project_bspdir)/tests/screens/mptests/node$(NODE)/$(TEST).scn: $(TEST).scn $(INSTALL_DATA) $< $@ -- cgit v1.2.3