Make 'make tar' and hence 'make gzip' and 'make bzip2' work again (reconfigure if you use one of these).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18116 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2008-07-23 06:30:29 +00:00
parent 0a9c749fbf
commit 2bff8402d4
2 changed files with 4 additions and 4 deletions

View file

@ -47,7 +47,7 @@ sub find_copyfile {
$ROOT="..";
my $ziptool="zip";
my $ziptool="zip -r";
my $output="rockbox.zip";
my $verbose;
my $exe;
@ -437,9 +437,9 @@ sub runone {
unlink($output);
if($verbose) {
print "$ziptool -r $output .rockbox >/dev/null\n";
print "$ziptool $output .rockbox >/dev/null\n";
}
system("$ziptool -r $output .rockbox >/dev/null");
system("$ziptool $output .rockbox >/dev/null");
if($target && ($fonts != 1)) {
# On some targets, rockbox.* is inside .rockbox

2
tools/configure vendored
View file

@ -2345,7 +2345,7 @@ fullzip:
tar:
\$(SILENT)rm -f rockbox.tar
\$(SILENT)for f in \`cat \$(BUILDDIR)/@APPS@/features\`; do feat="\$\$feat:\$\$f" ; done; \\
\$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(MODELNAME)\$\$feat\" -i \"\$(TARGET_ID)\" -o "rockbox.tar" -z "tar --no-recursion -uf" -r "\$(ROOTDIR)" \$(TARGET) \$(BINARY)
\$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(MODELNAME)\$\$feat\" -i \"\$(TARGET_ID)\" -o "rockbox.tar" -z "tar -uf" -r "\$(ROOTDIR)" \$(TARGET) \$(BINARY)
bzip2: tar
\$(SILENT)bzip2 -f9 rockbox.tar