- client: fix harmless compile warning

- make_project: don't try to install non-existent file

svn path=/trunk/boinc/; revision=22656
This commit is contained in:
David Anderson 2010-11-09 05:00:49 +00:00
parent 0630ffa054
commit d384377743
3 changed files with 11 additions and 2 deletions

View File

@ -7926,3 +7926,12 @@ David 08 Nov 2010
main.css
style2.css
white.css
David 08 Nov 2010
- client: fix harmless compile warning
- make_project: don't try to install non-existent file
py/Boinc/
setup_project.py
client/
cpu_sched.cpp

View File

@ -520,6 +520,7 @@ void CLIENT_STATE::reset_debt_accounting() {
debt_interval_start = now;
}
#if 0
#define REC_HALF_LIFE (30*86400)
// update REC (recent estimated credit)
@ -546,6 +547,7 @@ static void update_rec() {
);
}
}
#endif
// adjust project debts (short, long-term)
//

View File

@ -503,8 +503,6 @@ class Project:
self.dir('html/project/project_specific_prefs.inc'))
install(srcdir('html/project.sample/cache_parameters.inc'),
self.dir('html/project/cache_parameters.inc'))
install(srcdir('html/ops', 'sample_server_status.php'),
self.dir('html/user/server_status.php'))
install(srcdir('tools/project.xml'), self.dir('project.xml'))
if not self.production:
install(srcdir('test/uc_result'), self.dir('templates/uc_result'))