From 181304818052e9db4953bbc16ccc5eee2c29a03f Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 29 Jul 2010 16:20:36 +0000 Subject: [PATCH] =?UTF-8?q?2010-07-29=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * tar01/Makefile.am, tar02/Makefile.am: Replace mkdir cascade with $(MKDIR_P). --- testsuites/libtests/ChangeLog | 5 +++++ testsuites/libtests/tar01/Makefile.am | 3 +-- testsuites/libtests/tar02/Makefile.am | 3 +-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog index 01a36d56d4..9ee0189f4a 100644 --- a/testsuites/libtests/ChangeLog +++ b/testsuites/libtests/ChangeLog @@ -1,3 +1,8 @@ +2010-07-29 Ralf Corsépius + + * tar01/Makefile.am, tar02/Makefile.am: Replace mkdir cascade + with $(MKDIR_P). + 2010-07-29 Ralf Corsépius * tar01/Makefile.am, tar02/Makefile.am: Misc. fixes. diff --git a/testsuites/libtests/tar01/Makefile.am b/testsuites/libtests/tar01/Makefile.am index 987c365fb7..b959ca3a53 100644 --- a/testsuites/libtests/tar01/Makefile.am +++ b/testsuites/libtests/tar01/Makefile.am @@ -33,8 +33,7 @@ stamp-initial-fs-source: initial_filesystem.tar stamp-filesystem: rm -rf initial_fs - mkdir initial_fs - mkdir initial_fs/home + $(MKDIR_P) initial_fs/home (echo "This is a test of loading an RTEMS filesystem from an" ; \ echo "initial tar image.") >initial_fs/home/test_file cd initial_fs && ln -s home/test_file symlink diff --git a/testsuites/libtests/tar02/Makefile.am b/testsuites/libtests/tar02/Makefile.am index 559b325a01..dca8d00cbd 100644 --- a/testsuites/libtests/tar02/Makefile.am +++ b/testsuites/libtests/tar02/Makefile.am @@ -33,8 +33,7 @@ stamp-initial-fs-source: initial_filesystem.tar stamp-filesystem: rm -rf initial_fs - mkdir initial_fs - mkdir initial_fs/home + $(MKDIR_P) initial_fs/home (echo "This is a test of loading an RTEMS filesystem from an" ; \ echo "initial tar image.") >initial_fs/home/test_file cd initial_fs && ln -s home/test_file symlink