summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-12-17 04:18:58 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-12-17 04:18:58 +0000
commit71b44b51f5c4018f68dd29ac3a6ff442545785af (patch)
treecea3e76b8a74a216f287eebb01e0ca8b6067f380
parent2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-71b44b51f5c4018f68dd29ac3a6ff442545785af.tar.bz2
2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* mptests.am: Use $(mkdir_p) instead of $(mkinstalldirs).
-rw-r--r--testsuites/mptests/ChangeLog4
-rw-r--r--testsuites/mptests/mptests.am8
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 <corsepiu@faw.uni-ulm.de>
+
+ * mptests.am: Use $(mkdir_p) instead of $(mkinstalldirs).
+
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* 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) $< $@