mirror of https://github.com/BOINC/boinc.git
30 lines
719 B
PHP
30 lines
719 B
PHP
<?php
|
|
require_once("docutil.php");
|
|
page_head("Upgrading project software");
|
|
|
|
echo "
|
|
The script <b>bin/upgrade</b> copies files from
|
|
the BOINC source tree to a project tree.
|
|
This is typically done after updating the source tree
|
|
and recompiling the software.
|
|
<p>
|
|
<b>upgrade</b> does the following:
|
|
<ul>
|
|
<li>
|
|
It copies files from the source/html/* directories
|
|
to the corresponding project directories.
|
|
<li>
|
|
It copies source/sched/cgi and source/sched/file_upload_handler
|
|
to projects/cgi-bin.
|
|
<li>
|
|
It copies other programs in source/sched
|
|
to project/bin.
|
|
<li>
|
|
It copies programs in source/tools to project/bin.
|
|
</ul>
|
|
|
|
";
|
|
page_tail();
|
|
?>
|
|
|