Commit 91fc8ce8 authored by unknown's avatar unknown

Merge

parents 952516f3 7764d6e5
...@@ -274,11 +274,14 @@ if (defined $opt_changelog) ...@@ -274,11 +274,14 @@ if (defined $opt_changelog)
# #
unless ($opt_skip_manual) unless ($opt_skip_manual)
{ {
$msg= "Adding manual.texi"; $msg= "Updating manual files";
&logger($msg); &logger($msg);
$command= "install -m 644 $opt_docdir/Docs/{manual,reservedwords}.texi"; foreach $file qw/internals manual reservedwords/
$command.= " $target_dir/Docs/"; {
&run_command($command, "Could not update the manual in $target_dir/Docs/!"); $command= "bk cat $opt_docdir/Docs/$file.texi";
$command.= "> $target_dir/Docs/$file.texi";
&run_command($command, "Could not updated $file.texi in $target_dir/Docs/!");
}
} }
# #
...@@ -364,11 +367,13 @@ sub print_help ...@@ -364,11 +367,13 @@ sub print_help
Usage: Bootstrap [options] <bk repository> Usage: Bootstrap [options] <bk repository>
Checks out (exports) a clear-text version of the given local BitKeeper Creates a MySQL source distribution to be used for the release builds.
It checks out (exports) a clear-text version of the given local BitKeeper
repository, creates and adds a Changelog file (if requested), adds the repository, creates and adds a Changelog file (if requested), adds the
latest manual.texi from the mysqldoc tree and builds a source distribution latest manual files from the mysqldoc BK tree and builds a source
(*.tar.gz) file. Optionally, the test suite can be run before the source distribution (*.tar.gz) file. Optionally, the test suite and the
archive is being created. distribution check can be run before the source archive is being created.
Options: Options:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment