summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuites/psxtests/ChangeLog4
-rw-r--r--testsuites/psxtests/psxtests.am6
2 files changed, 7 insertions, 3 deletions
diff --git a/testsuites/psxtests/ChangeLog b/testsuites/psxtests/ChangeLog
index d399b6baaf..8b2fe3a5c1 100644
--- a/testsuites/psxtests/ChangeLog
+++ b/testsuites/psxtests/ChangeLog
@@ -1,3 +1,7 @@
+2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * psxtests.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/psxtests/psxtests.am b/testsuites/psxtests/psxtests.am
index edf4bdeb51..37abe888b6 100644
--- a/testsuites/psxtests/psxtests.am
+++ b/testsuites/psxtests/psxtests.am
@@ -3,16 +3,16 @@
project_bspdir=$(PROJECT_ROOT)/@RTEMS_BSP@
$(project_bspdir)/tests:
- @$(mkinstalldirs) $@
+ @$(mkdir_p) $@
$(project_bspdir)/tests/$(TEST)$(LIB_VARIANT).exe: $(PGM)
$(INSTALL_PROGRAM) $< $@
$(project_bspdir)/tests/screens:
- @$(mkinstalldirs) $@
+ @$(mkdir_p) $@
$(project_bspdir)/tests/screens/psxtests:
- @$(mkinstalldirs) $@
+ @$(mkdir_p) $@
$(project_bspdir)/tests/screens/psxtests/$(TEST).scn: $(TEST).scn
$(INSTALL_DATA) $< $@