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
12df0887
Commit
12df0887
authored
Feb 11, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/M40/mysql-4.0 into mysql.com:/M41/merge-4.1
Build-tools/Do-compile: Auto merged
parents
4b7e8a8e
8cd6d181
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Build-tools/Do-compile
Build-tools/Do-compile
+4
-2
No files found.
Build-tools/Do-compile
View file @
12df0887
...
...
@@ -806,7 +806,7 @@ sub find
sub
rm_all
{
my
(
@rm_files
)
=
@_
;
my
(
$dir
,
$current_dir
,
@files
,
@dirs
);
my
(
$dir
,
$current_dir
,
@files
,
@dirs
,
$removed
);
$current_dir
=
`
pwd
`;
chomp
(
$current_dir
);
foreach
$dir
(
@rm_files
)
...
...
@@ -830,7 +830,9 @@ sub rm_all
}
if
(
$#files
>=
0
)
{
system
("
rm -f
"
.
join
("
",
@files
))
&&
abort
("
Can't remove files from
$dir
");
$removed
=
unlink
@files
;
print
"
rm_all : removed
$removed
files in
$current_dir
/
$dir
\n
"
if
(
$opt_debug
);
abort
("
Can't remove all $#files+1 from
$current_dir
/
$dir
, just
$removed
")
if
$removed
!=
$#files
+
1
;
}
foreach
$dir
(
@dirs
)
{
...
...
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