forked from len0rd/rockbox
Fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@907 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6bca292ff2
commit
4a89a6cfcf
3 changed files with 4 additions and 3 deletions
|
|
@ -28,7 +28,8 @@ They are <i>not</i> official releases, they are in fact almost guaranteed to not
|
|||
|
||||
<h2>Build status</h2>
|
||||
|
||||
<p>This table shows which targets are currently buildable with the CVS code:
|
||||
<p>This table shows which targets are currently buildable with the CVS code.
|
||||
The timestamp is GMT.
|
||||
|
||||
<p>
|
||||
<!--#include virtual="buildstatus.link" -->
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ sub list {
|
|||
|
||||
opendir(DIR, "$basedir/$dir") or
|
||||
die "Can't opendir($basedir/$dir)";
|
||||
@tarballs = grep { /^archos/ } readdir(DIR);
|
||||
@tarballs = sort grep { /^archos/ } readdir(DIR);
|
||||
closedir DIR;
|
||||
|
||||
print "<ul>\n";
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ $basedir = "/home/dast/rockbox-build/daily-build/";
|
|||
|
||||
opendir(DIR, $basedir) or
|
||||
die "Can't opendir($basedir)";
|
||||
@tarballs = grep { /^rockbox-daily-/ } readdir(DIR);
|
||||
@tarballs = sort grep { /^rockbox-daily-/ } readdir(DIR);
|
||||
closedir DIR;
|
||||
|
||||
print "<ul>\n";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue