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
This commit is contained in:
Thomas Martitz 2010-07-13 14:49:01 +00:00
parent 35ac40712b
commit 3de1ab6b95

View file

@ -46,7 +46,7 @@ sub glob_install {
foreach my $src (glob($_src)) { foreach my $src (glob($_src)) {
unless ( -d $src || !(-e $src)) { unless ( -d $src || !(-e $src)) {
system("install $opts \"$src\" \"$dest\""); system("install -vc $opts \"$src\" \"$dest\"");
print "install $opts \"$src\" -> \"$dest\"\n" if $verbose; print "install $opts \"$src\" -> \"$dest\"\n" if $verbose;
} }
} }
@ -605,6 +605,7 @@ $year+=1900;
sub runone { sub runone {
my ($target, $fonts)=@_; my ($target, $fonts)=@_;
# in the app the the layout is different (no .rockbox, but bin/lib/share)
$app = ($modelname eq "application"); $app = ($modelname eq "application");
# build a full install .rockbox ($rbdir) directory # build a full install .rockbox ($rbdir) directory
@ -622,11 +623,6 @@ sub runone {
undef $target; undef $target;
} }
if($verbose) {
}
my $samedir = 1; # is the destination dir equal to source dir ?
if($install) { if($install) {
make_install(".rockbox", $install) or die "MKDIRFAILED\n"; make_install(".rockbox", $install) or die "MKDIRFAILED\n";
} }