mirror of https://github.com/BOINC/boinc.git
- 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:
parent
0630ffa054
commit
d384377743
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
//
|
||||
|
|
|
@ -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'))
|
||||
|
|
Loading…
Reference in New Issue