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
e177eba8
Commit
e177eba8
authored
Aug 07, 2003
by
greg@gcw.ath.cx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New option for Bootstrap: -w | --win-dist to create Windows source package
parent
d527253d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
Build-tools/Bootstrap
Build-tools/Bootstrap
+20
-3
scripts/Makefile.am
scripts/Makefile.am
+1
-0
No files found.
Build-tools/Bootstrap
View file @
e177eba8
...
...
@@ -43,6 +43,7 @@ $opt_suffix= "";
$opt_test
=
undef
;
$opt_skip_check
=
undef
;
$opt_skip_manual
=
undef
;
$opt_win_dist
=
undef
;
$version
=
"
unknown
";
$major
=
$minor
=
$release
=
0
;
...
...
@@ -62,7 +63,8 @@ GetOptions(
"
skip-manual
",
"
suffix=s
",
"
test|t
",
"
verbose|v
"
"
verbose|v
",
"
win-dist|w
"
)
||
print_help
("");
#
...
...
@@ -303,7 +305,21 @@ $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
");
chdir
("
scripts
");
$command
=
"
make make_win_src_distribution
";
&
run_command
(
$command
,
"
make make_win_src_distribution failed!
");
chdir
("
..
");
$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
)
{
...
...
@@ -330,7 +346,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
...
...
@@ -376,6 +392,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:
...
...
scripts/Makefile.am
View file @
e177eba8
...
...
@@ -65,6 +65,7 @@ pkgdata_DATA = make_binary_distribution
# failures with it.
CLEANFILES
=
@server_scripts@
\
make_binary_distribution
\
make_win_src_distribution
\
msql2mysql
\
mysql_config
\
mysql_fix_privilege_tables
\
...
...
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