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.tar.gz
rockbox-4a89a6cfcf319085fdc1f0f8a3b7f14b5c8e3eba.zip
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 d926fe4403..d538fc5497 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
28 28
29<h2>Build status</h2> 29<h2>Build status</h2>
30 30
31<p>This table shows which targets are currently buildable with the CVS code: 31<p>This table shows which targets are currently buildable with the CVS code.
32The timestamp is GMT.
32 33
33<p> 34<p>
34<!--#include virtual="buildstatus.link" --> 35<!--#include virtual="buildstatus.link" -->
diff --git a/www/dailymod.pl b/www/dailymod.pl
index f923a414c0..0e9392b3cc 100755
--- a/www/dailymod.pl
+++ b/www/dailymod.pl
@@ -7,7 +7,7 @@ sub list {
7 7
8 opendir(DIR, "$basedir/$dir") or 8 opendir(DIR, "$basedir/$dir") or
9 die "Can't opendir($basedir/$dir)"; 9 die "Can't opendir($basedir/$dir)";
10 @tarballs = grep { /^archos/ } readdir(DIR); 10 @tarballs = sort grep { /^archos/ } readdir(DIR);
11 closedir DIR; 11 closedir DIR;
12 12
13 print "<ul>\n"; 13 print "<ul>\n";
diff --git a/www/dailysrc.pl b/www/dailysrc.pl
index ea3cd40a13..27ef1994ed 100755
--- a/www/dailysrc.pl
+++ b/www/dailysrc.pl
@@ -4,7 +4,7 @@ $basedir = "/home/dast/rockbox-build/daily-build/";
4 4
5opendir(DIR, $basedir) or 5opendir(DIR, $basedir) or
6 die "Can't opendir($basedir)"; 6 die "Can't opendir($basedir)";
7@tarballs = grep { /^rockbox-daily-/ } readdir(DIR); 7@tarballs = sort grep { /^rockbox-daily-/ } readdir(DIR);
8closedir DIR; 8closedir DIR;
9 9
10print "<ul>\n"; 10print "<ul>\n";