diff options
author | lenz@mysql.com <> | 2002-09-27 15:27:14 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2002-09-27 15:27:14 +0200 |
commit | 9a2c402cc86b8b3a87d15f606318ed3b42e5ead5 (patch) | |
tree | 5c49b30d8eb842e20b940dd0c7b8a6dcd449b8e5 /Build-tools | |
parent | f85e430a6d8cf636ba18045f37cd3a71871c09af (diff) | |
download | mariadb-git-9a2c402cc86b8b3a87d15f606318ed3b42e5ead5.tar.gz |
- renamed gtar->tar in Build-tools/mysql-copyright, since it is more
common, especially on our main build systems
- cosmetical fix in mysql.spec
Diffstat (limited to 'Build-tools')
-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 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); |