diff options
-rwxr-xr-x | Build-tools/mysql-copyright | 4 | ||||
-rw-r--r-- | support-files/mysql.spec.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Build-tools/mysql-copyright b/Build-tools/mysql-copyright index 0d49acac400..68673f3f53f 100755 --- a/Build-tools/mysql-copyright +++ b/Build-tools/mysql-copyright @@ -89,7 +89,7 @@ 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); @@ -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); diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 69571b65092..dcff17dee03 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -519,7 +519,7 @@ fi take care of this - reorganized the file list: actually install man pages along with the binaries of the respective subpackage -- donīt include libmysqld.a in the devel subpackage as well, if we +- do not include libmysqld.a in the devel subpackage as well, if we have a special "embedded" subpackage - reworked the package descriptions |