1
0
Fork 0
forked from len0rd/rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@907 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-06-07 11:38:20 +00:00
parent 6bca292ff2
commit 4a89a6cfcf
3 changed files with 4 additions and 3 deletions

View file

@ -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" -->

View file

@ -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";

View file

@ -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";