summaryrefslogtreecommitdiff
path: root/Build-tools/mysql-copyright
diff options
context:
space:
mode:
Diffstat (limited to 'Build-tools/mysql-copyright')
-rwxr-xr-xBuild-tools/mysql-copyright10
1 files changed, 5 insertions, 5 deletions
diff --git a/Build-tools/mysql-copyright b/Build-tools/mysql-copyright
index 0d49acac400..70b65d3f2cf 100755
--- a/Build-tools/mysql-copyright
+++ b/Build-tools/mysql-copyright
@@ -89,15 +89,15 @@ sub main
}
# everything should be ok, continue with extracting..
- `gtar xfz ../$distfile`;
+ `tar xfz ../$distfile`;
$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();
@@ -107,7 +107,7 @@ sub main
`mv -f $destdir $newdistname`;
# tar the new distribution
- `gtar cz -f $opt_target/$newdistname.tar.gz *`;
+ `tar cz -f $opt_target/$newdistname.tar.gz *`;
$pec= $? >> 8;
abort($dir, "Making new tar archive failed!\n") if ($pec);
@@ -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`;
}
}