summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-07-13 14:49:01 +0000
committerThomas Martitz <kugel@rockbox.org>2010-07-13 14:49:01 +0000
commit3de1ab6b9568989f90f2cc0f520ccbc249cd47a8 (patch)
tree26e7ac92f621cb087b12e6f27897865cc541ee66
parent35ac40712bc94a635d9dfd1f6a4919ad5e19be7d (diff)
downloadrockbox-3de1ab6b9568989f90f2cc0f520ccbc249cd47a8.tar.gz
rockbox-3de1ab6b9568989f90f2cc0f520ccbc249cd47a8.zip
Remove forgotten lines and add a commit regarding app builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27408 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/buildzip.pl8
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index 91bd66e89d..4b9d7e727d 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -46,7 +46,7 @@ sub glob_install {
46 46
47 foreach my $src (glob($_src)) { 47 foreach my $src (glob($_src)) {
48 unless ( -d $src || !(-e $src)) { 48 unless ( -d $src || !(-e $src)) {
49 system("install $opts \"$src\" \"$dest\""); 49 system("install -vc $opts \"$src\" \"$dest\"");
50 print "install $opts \"$src\" -> \"$dest\"\n" if $verbose; 50 print "install $opts \"$src\" -> \"$dest\"\n" if $verbose;
51 } 51 }
52 } 52 }
@@ -605,6 +605,7 @@ $year+=1900;
605sub runone { 605sub runone {
606 my ($target, $fonts)=@_; 606 my ($target, $fonts)=@_;
607 607
608 # in the app the the layout is different (no .rockbox, but bin/lib/share)
608 $app = ($modelname eq "application"); 609 $app = ($modelname eq "application");
609 610
610 # build a full install .rockbox ($rbdir) directory 611 # build a full install .rockbox ($rbdir) directory
@@ -622,11 +623,6 @@ sub runone {
622 undef $target; 623 undef $target;
623 } 624 }
624 625
625 if($verbose) {
626 }
627
628 my $samedir = 1; # is the destination dir equal to source dir ?
629
630 if($install) { 626 if($install) {
631 make_install(".rockbox", $install) or die "MKDIRFAILED\n"; 627 make_install(".rockbox", $install) or die "MKDIRFAILED\n";
632 } 628 }