summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-12-17 04:18:50 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-12-17 04:18:50 +0000
commit0ba4b56fd89f1fd06a2588382d4a47436f5451fa (patch)
tree6c61c3fc41582c650c6f237e2d913bc4290a3e4f
parent2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-0ba4b56fd89f1fd06a2588382d4a47436f5451fa.tar.bz2
2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* itrontests.am: Use $(mkdir_p) instead of $(mkinstalldirs).
-rw-r--r--testsuites/itrontests/ChangeLog4
-rw-r--r--testsuites/itrontests/itrontests.am6
2 files changed, 7 insertions, 3 deletions
diff --git a/testsuites/itrontests/ChangeLog b/testsuites/itrontests/ChangeLog
index d13c05348b..dcce8f916a 100644
--- a/testsuites/itrontests/ChangeLog
+++ b/testsuites/itrontests/ChangeLog
@@ -1,3 +1,7 @@
+2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * itrontests.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/itrontests/itrontests.am b/testsuites/itrontests/itrontests.am
index 5c42df4f19..6cefec0e25 100644
--- a/testsuites/itrontests/itrontests.am
+++ b/testsuites/itrontests/itrontests.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/itrontests:
- @$(mkinstalldirs) $@
+ @$(mkdir_p) $@
$(project_bspdir)/tests/screens/itrontests/$(TEST).scn: $(TEST).scn
$(INSTALL_DATA) $< $@