summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/tar01
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/tar01')
-rw-r--r--testsuites/libtests/tar01/Makefile.am7
1 files changed, 3 insertions, 4 deletions
diff --git a/testsuites/libtests/tar01/Makefile.am b/testsuites/libtests/tar01/Makefile.am
index 4664c27810..585526cebc 100644
--- a/testsuites/libtests/tar01/Makefile.am
+++ b/testsuites/libtests/tar01/Makefile.am
@@ -40,10 +40,9 @@ initial_filesystem.tar:
$(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
- cd initial_fs ; pax -w -f ../initial_filesystem.tar home symlink
+ (cd initial_fs; \
+ $(LN_S) home/test_file symlink; \
+ $(PAX) -w -f ../initial_filesystem.tar home symlink)
CLEANFILES += initial_filesystem.tar
-CLEANFILES += initial_fs
-
include $(top_srcdir)/../automake/local.am