diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-06-07 11:38:20 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-06-07 11:38:20 +0000 |
| commit | 4a89a6cfcf319085fdc1f0f8a3b7f14b5c8e3eba (patch) | |
| tree | 66ad8a59b5396c2238f6e89ea9fc5778e431cda1 | |
| parent | 6bca292ff24eb989a63aba2d0f0d0846e03a4ff2 (diff) | |
| download | rockbox-4a89a6cfcf319085fdc1f0f8a3b7f14b5c8e3eba.zip rockbox-4a89a6cfcf319085fdc1f0f8a3b7f14b5c8e3eba.tar.gz rockbox-4a89a6cfcf319085fdc1f0f8a3b7f14b5c8e3eba.tar.bz2 rockbox-4a89a6cfcf319085fdc1f0f8a3b7f14b5c8e3eba.tar.xz | |
Fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@907 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | www/daily.t | 3 | ||||
| -rwxr-xr-x | www/dailymod.pl | 2 | ||||
| -rwxr-xr-x | www/dailysrc.pl | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/www/daily.t b/www/daily.t index d926fe4..d538fc5 100644 --- a/www/daily.t +++ b/www/daily.t @@ -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" --> diff --git a/www/dailymod.pl b/www/dailymod.pl index f923a41..0e9392b 100755 --- a/www/dailymod.pl +++ b/www/dailymod.pl @@ -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"; diff --git a/www/dailysrc.pl b/www/dailysrc.pl index ea3cd40..27ef199 100755 --- a/www/dailysrc.pl +++ b/www/dailysrc.pl @@ -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"; |