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
30c85129
Commit
30c85129
authored
Mar 30, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-union_merge-4.1
parents
56b2de98
cc3cadb7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
15 deletions
+31
-15
Build-tools/Bootstrap
Build-tools/Bootstrap
+28
-14
support-files/mysql.server.sh
support-files/mysql.server.sh
+3
-1
No files found.
Build-tools/Bootstrap
View file @
30c85129
...
...
@@ -240,40 +240,52 @@ if (defined $opt_changelog)
# the last tagged ChangeSet (this relies heavily on our current tagging
# practice!)
#
my
$revision
=
"";
$opt_changelog
=~
s/^=//
;
# Sometimes, a leading '=' was not stripped.
my
$log_base
=
$opt_changelog
;
my
$changelogfile
;
if
(
$target_dir
=~
m:^/:
)
# we need an absolute path, as we change directory
{
$changelogfile
=
$target_dir
.
"
/ChangeLog
";
}
else
{
$changelogfile
=
cwd
()
.
"
/
"
.
$target_dir
.
"
/ChangeLog
";
}
if
(
$opt_changelog
eq
"
last
")
{
if
(
!
$opt_revision
)
{
$
revision
=
`
bk changes -t -d':REV:::TAG:' -n
$REPO
| grep mysql-
$major
.
$minor
| head -1 | cut -f1 -d ":"
`;
$
log_base
=
`
bk changes -t -d':REV:::TAG:' -n
$REPO
| grep mysql-
$major
.
$minor
| head -1 | cut -f1 -d ":"
`;
}
else
{
$
revision
=
`
bk changes -r..
$opt_revision
-t -d':REV:' -n
$REPO
| head -2 | tail -1
`;
$
log_base
=
`
bk changes -r..
$opt_revision
-t -d':REV:' -n
$REPO
| head -2 | tail -1
`;
}
chomp
(
$revision
);
$opt_changelog
=
$revision
;
chomp
(
$log_base
);
}
$msg
=
"
Adding
$
target_dir
/ChangeLog
";
$msg
.=
"
(down to revision
$
opt_changelog
)
"
if
$opt_changelog
ne
"";
$msg
=
"
Adding
$
changelogfile
";
$msg
.=
"
(down to revision
$
log_base
)
"
if
$log_base
ne
"";
&
logger
(
$msg
);
$command
=
"
bk changes -v
";
$command
.=
"
-r
"
if
(
$opt_changelog
ne
""
||
$opt_revision
);
$command
.=
$opt_changelog
if
$opt_changelog
ne
"";
$command
.=
"
..
"
if
(
$opt_changelog
ne
""
&&
!
$opt_revision
);
# Due to a BK error, "bk changes" must be run in $REPO !
$command
=
"
cd
$REPO
;
";
$command
.=
"
bk changes -v
";
$command
.=
"
-r
"
if
(
$log_base
ne
""
||
$opt_revision
);
$command
.=
$log_base
if
$log_base
ne
"";
$command
.=
"
..
"
if
(
$log_base
ne
""
&&
!
$opt_revision
);
$command
.=
"
..
"
.
$opt_revision
if
$opt_revision
;
$command
.=
"
"
.
$REPO
.
"
>
$target_dir
/ChangeLog
";
$command
.=
"
>
$changelogfile
";
&
logger
(
$command
);
# We cannot use run_command here because of output redirection
unless
(
$opt_dry_run
)
{
system
(
$command
)
==
0
or
&
abort
("
Could not create
$
target_dir
/ChangeLog
!
");
system
(
$command
)
==
0
or
&
abort
("
Could not create
$
changelogfile
!
");
}
}
#
# Add the latest manual from the mysqldoc tree
# Add the latest manual
and tool
from the mysqldoc tree
#
unless
(
$opt_skip_manual
)
{
...
...
@@ -283,6 +295,8 @@ unless ($opt_skip_manual)
system
("
bk cat
$opt_docdir
/Docs/
$file
.texi >
$target_dir
/Docs/
$file
.texi
")
==
0
or
&
abort
("
Could not update
$file
.texi in
$target_dir
/Docs/!
");
}
&
run_command
("
cp
$opt_docdir
/Docs/Support/texi2html
$target_dir
/Docs/Support
",
"
Could not copy
$opt_docdir
/Docs/Support/texi2html!
");
&
run_command
("
rm -f
$target_dir
/Docs/Images/Makefile*
",
"
Could not remove Makefiles in
$target_dir
/Docs/Images/!
");
...
...
support-files/mysql.server.sh
View file @
30c85129
...
...
@@ -87,10 +87,12 @@ parse_arguments() {
}
wait_for_pid
()
{
for
((
i
=
0
;
i<35
;
i++
))
;
do
i
=
0
while
test
$i
-lt
35
;
do
sleep
1
test
-s
$pid_file
&&
i
=
''
&&
break
echo
$echo_n
".
$echo_c
"
i
=
`
expr
$i
+ 1
`
done
if
test
-z
"
$i
"
;
then
...
...
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