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
f4295a05
Commit
f4295a05
authored
Oct 25, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/M41/mysql-4.1 into mysql.com:/M41/push-4.1
parents
c436a91c
2df0eca2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
Build-tools/mysql-copyright
Build-tools/mysql-copyright
+9
-3
No files found.
Build-tools/mysql-copyright
View file @
f4295a05
...
...
@@ -3,7 +3,7 @@
# Untar a MySQL distribution, change the copyright texts,
# pack it up again to a given directory
$VER
=
"
1.
4
";
$VER
=
"
1.
5
";
use
Cwd
;
use
File::
Basename
;
...
...
@@ -134,7 +134,6 @@ sub main
# remove temporary directory
chdir
(
$WD
)
or
print
"
$! Unable to move up one dir
\n
";
`
cd
$WD
`;
my
$cwd
=
getcwd
();
print
"
current dir is
$cwd
\n
"
if
$opt_verbose
;
if
(
-
e
$dir
)
{
...
...
@@ -231,7 +230,14 @@ sub run_autotools
# File "configure.in" has already been modified by "trim_the_fat()"
`
aclocal && autoheader && aclocal && automake && autoconf
`;
# It must be ensured that the timestamps of the relevant files are really
# ascending, for otherwise the Makefile may cause a re-run of these
# autotools. Experience shows that deletion is the only safe way.
unlink
("
config.h.in
")
or
die
"
Can't delete
$destdir
/config.h.in: $!
\n
";
unlink
("
aclocal.m4
")
or
die
"
Can't delete
$destdir
/aclocal.m4: $!
\n
";
# These sleep commands also ensure the ascending order.
`
aclocal && sleep 2 && autoheader && sleep 2 && automake && sleep 2 && autoconf
`;
die
"
'./configure' was not produced!
"
unless
(
-
f
"
configure
");
if
(
-
d
"
autom4te.cache
")
{
...
...
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