2010-07-30 Ralf Corsépius <ralf.corsepius@rtems.org>

* tar01/Makefile.am:
	Apply $LN_S, $PAX. Use subshell for tarball creation.
	Don't add initial_fs to CLEANFILES.
	* tar02/Makefile.am:
	Apply $LN_S, $PAX. Use subshell for tarball creation.
This commit is contained in:
Ralf Corsepius
2010-07-30 08:46:13 +00:00
parent e33e5c6726
commit a7b7386772
3 changed files with 14 additions and 6 deletions
+8
View File
@@ -1,3 +1,11 @@
2010-07-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* tar01/Makefile.am:
Apply $LN_S, $PAX. Use subshell for tarball creation.
Don't add initial_fs to CLEANFILES.
* tar02/Makefile.am:
Apply $LN_S, $PAX. Use subshell for tarball creation.
2010-07-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Add AC_PROG_LN_S.
+3 -4
View File
@@ -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
+3 -2
View File
@@ -40,8 +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
include $(top_srcdir)/../automake/local.am