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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c10d1204
Commit
c10d1204
authored
Aug 07, 2003
by
greg@gcw.ath.cx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --win-dist parameter to Bootstrap, to run make_win_src_distribution
parent
26abb7d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
Build-tools/Bootstrap
Build-tools/Bootstrap
+16
-3
No files found.
BitKeeper/etc/logging_ok
View file @
c10d1204
...
...
@@ -23,6 +23,7 @@ davida@isil.mysql.com
dlenev@mysql.com
gluh@gluh.(none)
gluh@gluh.mysql.r18.ru
greg@gcw.ath.cx
greg@mysql.com
guilhem@mysql.com
gweir@build.mysql.com
...
...
Build-tools/Bootstrap
View file @
c10d1204
...
...
@@ -42,6 +42,7 @@ $opt_suffix= "";
$opt_test
=
undef
;
$opt_skip_check
=
undef
;
$opt_skip_manual
=
undef
;
$opt_win_dist
=
undef
;
$version
=
"
unknown
";
GetOptions
(
...
...
@@ -60,7 +61,8 @@ GetOptions(
"
skip-manual
",
"
suffix=s
",
"
test|t
",
"
verbose|v
"
"
verbose|v
",
"
win-dist|w
"
)
||
print_help
("");
#
...
...
@@ -300,7 +302,17 @@ $command= "make dist";
&
run_command
(
$command
,
"
make dist failed!
");
#
# Run "make distcheck" to verify the source archive
# Package the Windows source
#
if
(
$opt_win_dist
)
{
&
logger
("
Creating Windows source package
");
$command
=
"
./scripts/make_win_src_distibution
";
&
run_command
(
$command
,
"
make_win_src_distribution failed!
");
}
#
# Run "make distcheck" to verify the source archive
#
if
(
!
$opt_skip_check
)
{
...
...
@@ -327,7 +339,7 @@ sub print_help
print
"
ERROR:
$message
\n
";
}
print
<<EOF;
Usage: Bootstrap [options] <bk repository>
Checks out (exports) a clear-text version of the given local BitKeeper
...
...
@@ -373,6 +385,7 @@ Options:
(e.g. "-20020518").
-t, --test Run the test suite after build
-v, --verbose Be verbose
-w, --win-dist Also make Windows source distribution
Example:
...
...
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