summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-06-07 11:38:20 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-06-07 11:38:20 +0000
commit4a89a6cfcf319085fdc1f0f8a3b7f14b5c8e3eba (patch)
tree66ad8a59b5396c2238f6e89ea9fc5778e431cda1
parent6bca292ff24eb989a63aba2d0f0d0846e03a4ff2 (diff)
downloadrockbox-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.t3
-rwxr-xr-xwww/dailymod.pl2
-rwxr-xr-xwww/dailysrc.pl2
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";