mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
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:
parent
0a9c749fbf
commit
2bff8402d4
2 changed files with 4 additions and 4 deletions
|
|
@ -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
2
tools/configure
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue