diff options
author | unknown <monty@hundin.mysql.fi> | 2002-02-10 02:28:24 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-02-10 02:28:24 +0200 |
commit | 61b769d94a9bbbea987ce4fb3afbe1f6d47795cd (patch) | |
tree | d319a4637910da4e4f6daa4f5f8b6dddd71ea5e9 /Build-tools/mysql-copyright | |
parent | c9a4dde5de64fe31f65653ca5bc7495fcf471382 (diff) | |
download | mariadb-git-61b769d94a9bbbea987ce4fb3afbe1f6d47795cd.tar.gz |
Fix for customer build
Diffstat (limited to 'Build-tools/mysql-copyright')
-rwxr-xr-x | Build-tools/mysql-copyright | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build-tools/mysql-copyright b/Build-tools/mysql-copyright index df819b20fa1..0d49acac400 100755 --- a/Build-tools/mysql-copyright +++ b/Build-tools/mysql-copyright @@ -96,7 +96,7 @@ sub main # remove the 'PUBLIC' file from distribution and copy LICENSE # on the toplevel of the directory instead. file 'PUBLIC' shouldn't # exist in the new mysql distributions, but let's be sure.. - `rm -f $destdir/PUBLIC`; + `rm -f $destdir/PUBLIC $destdir/README`; `cp -p $WD/Docs/LICENSE $destdir/`; # fix file copyrights @@ -129,7 +129,7 @@ sub fix_usage_copyright foreach my $Cfile (@Cfiles) { chop $Cfile; - `replace \"This is free software,\\\\\\nand you are welcome to modify and redistribute it under the GPL license\" \"This is commercial software,\\\\nplease see the file LICENSE for details\" -- $Cfile`; + `replace "This is free software," "This is commercial software," "and you are welcome to modify and redistribute it under the GPL license" "please see the file LICENSE for details" -- $Cfile`; } } |