diff options
author | unknown <lenz@mysql.com> | 2002-10-13 16:57:33 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-10-13 16:57:33 +0200 |
commit | 4a498d689158c7cf9068b6c932ea3ea4f4d80aa4 (patch) | |
tree | c4ef65296f29e91dee9d2dd7be37df6feae0ff43 /Build-tools/mysql-copyright | |
parent | 782dccfbfe14f7e0366934faafd515c2435a7d7c (diff) | |
download | mariadb-git-4a498d689158c7cf9068b6c932ea3ea4f4d80aa4.tar.gz |
- replaced Docs/LICENSE with Docs/MySQLEULA.txt
- Updated scripts/make_binary_distribution and scripts/mysql-copyright*
accordingly
BitKeeper/deleted/.del-LICENSE~4cfaff8de837acb8:
Delete: Docs/LICENSE
BitKeeper/deleted/.del-MySQLEULA.doc~e7fa298916345cf3:
Delete: Docs/MySQLEULA.doc
Build-tools/mysql-copyright-2:
- replaced LICENSE with MySQLEULA.txt
Build-tools/mysql-copyright:
- replaced LICENSE with MySQLEULA.txt
scripts/make_binary_distribution.sh:
- replaced LICENSE with MySQLEULA.txt
Diffstat (limited to 'Build-tools/mysql-copyright')
-rwxr-xr-x | Build-tools/mysql-copyright | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build-tools/mysql-copyright b/Build-tools/mysql-copyright index 68673f3f53f..70b65d3f2cf 100755 --- a/Build-tools/mysql-copyright +++ b/Build-tools/mysql-copyright @@ -93,11 +93,11 @@ sub main $pec= $? >> 8; abort($dir, "Extracting from tar failed!\n") if ($pec); - # remove the 'PUBLIC' file from distribution and copy LICENSE + # remove the 'PUBLIC' file from distribution and copy MySQLEULA.txt # 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 $destdir/README`; - `cp -p $WD/Docs/LICENSE $destdir/`; + `cp -p $WD/Docs/MySQLEULA.txt $destdir/`; # fix file copyrights &fix_usage_copyright(); @@ -129,7 +129,7 @@ sub fix_usage_copyright foreach my $Cfile (@Cfiles) { chop $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`; + `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 MySQLEULA.txt for details" -- $Cfile`; } } |