Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
ad976d1e
Commit
ad976d1e
authored
Aug 12, 2003
by
lenz@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- added option "--pull" to be able to update the BK repositories before
starting the bootstrap
parent
38a5d1b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
Build-tools/Bootstrap
Build-tools/Bootstrap
+21
-1
No files found.
Build-tools/Bootstrap
View file @
ad976d1e
...
...
@@ -38,6 +38,7 @@ $opt_export_only= undef;
$opt_help
=
$opt_verbose
=
0
;
$opt_log
=
undef
;
$opt_mail
=
"";
$opt_pull
=
undef
;
$opt_revision
=
undef
;
$opt_suffix
=
"";
$opt_test
=
undef
;
...
...
@@ -58,6 +59,7 @@ GetOptions(
"
help|h
",
"
log|l:s
",
"
mail|m=s
",
"
pull|p
",
"
revision|r=s
",
"
skip-check|s
",
"
skip-manual
",
...
...
@@ -110,6 +112,23 @@ if (($opt_directory ne ".") && (!-d $opt_directory && !$opt_dry_run))
&
logger
("
Logging to
$LOGFILE
")
if
(
defined
$opt_log
);
#
# Pull recent changes first
#
if
(
$opt_pull
)
{
&
logger
("
Updating BK tree
$REPO
to latest ChangeSet first
");
$command
=
"
cd
$REPO
; bk pull; cd ..
";
&
run_command
(
$command
,
"
Could not update
$REPO
!
");
unless
(
$opt_skip_manual
)
{
&
logger
("
Updating manual tree in
$opt_docdir
");
$command
=
"
cd
$opt_docdir
; bk pull; cd ..
";
&
run_command
(
$command
,
"
Could not update
$opt_docdir
!
");
}
}
#
# Use a temporary name until we know the version number
#
...
...
@@ -253,7 +272,7 @@ if (defined $opt_changelog)
#
# Add the latest manual from the mysqldoc tree
#
if
(
!
$opt_skip_manual
)
unless
(
$opt_skip_manual
)
{
$msg
=
"
Adding manual.texi
";
&
logger
(
$msg
);
...
...
@@ -378,6 +397,7 @@ Options:
include a log file snippet, if logging is enabled)
Note that the \@-Sign needs to be quoted!
Example: --mail=user\\\@domain.com
-p, --pull Update the source BK trees before building
-r, --revision=<rev> Export the tree as of revision <rev>
(default is up to the latest revision)
-s, --skip-check Skip checking the distribution with "make distcheck"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment