From b745c2a9191f6fa2dfefcdae353ac2cf582c4d87 Mon Sep 17 00:00:00 2001 From: Matt Madia Date: Mon, 8 Mar 2010 02:16:05 +0000 Subject: [PATCH] Explicitly tell tar to use the ustar format when creating the tgz archive. This resolves the issue of FreeBSD 8.0 of creating ISOs that will not boot. ISO creation was also tested with FreeBSD 7.2 and Haiku r35767 gcc2hybrid. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35783 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/scripts/build_tgz_archive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/build_tgz_archive b/build/scripts/build_tgz_archive index d65d9bf381..80f74a3c4d 100755 --- a/build/scripts/build_tgz_archive +++ b/build/scripts/build_tgz_archive @@ -47,7 +47,7 @@ done echo "Building archive $archive ..." $rm -f $archive contents=$(cd $outputDir; ls) -tar -C $outputDir -czf $archive $contents || exit 1 +tar -C $outputDir --format ustar -czf $archive $contents || exit 1 # clean up $rm -rf $outputDir