diff options
author | unknown <lenz@mysql.com> | 2003-01-23 20:07:19 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-01-23 20:07:19 +0100 |
commit | 787a2d4eda06e846f2984db57d3f0761aac5a8b2 (patch) | |
tree | 5a801111757145dc9ac023445f66bc157cbb65e1 /scripts/make_binary_distribution.sh | |
parent | bb0d32deb922fb685b57d2d9ebde99c700bbc1e2 (diff) | |
download | mariadb-git-787a2d4eda06e846f2984db57d3f0761aac5a8b2.tar.gz |
- merge relevant Do-compile changes from 4.0 tree
- use "gnutar" on Mac OS X to build the binary distribution
Build-tools/Do-compile:
- merged relevevant changes from 4.0 (Options no-mysqltest, no-benchmark,
log_timestamp function)
scripts/make_binary_distribution.sh:
- make sure to use "gnutar" (on Mac OS X) to pack up the binary distribution
(Mac OS X "tar" seems to be buggy - the resulting tarballs appear to be
corrupted, e.g. when opening them with Midnight Commander. GNU tar seems
to extract them correctly, though)
Diffstat (limited to 'scripts/make_binary_distribution.sh')
-rw-r--r-- | scripts/make_binary_distribution.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index d8d34229b70..2e25cc9bdc4 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -189,7 +189,7 @@ which_1 () # Create the result tar file # -tar=`which_1 gtar` +tar=`which_1 gnutar gtar` if test "$?" = "1" -o "$tar" = "" then tar=tar |