diff options
author | kent@mysql.com <> | 2005-10-07 01:56:11 +0200 |
---|---|---|
committer | kent@mysql.com <> | 2005-10-07 01:56:11 +0200 |
commit | ae62a588179d8a80c2093ff4100b89c1898cb5ff (patch) | |
tree | 1771d9110315adff1d4bd85194cb66440f585a52 /scripts | |
parent | 87016b438ccee0bec2de2c0b465b2e826eb65019 (diff) | |
download | mariadb-git-ae62a588179d8a80c2093ff4100b89c1898cb5ff.tar.gz |
make_binary_distribution.sh:
Corrected platform name output
Services.cpp:
Dont print null address (back port from 5.0)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_binary_distribution.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index 78842e7d9cf..0ab26f33c53 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -293,10 +293,10 @@ if [ x$NDBCLUSTER = x1 ]; then fi # Change the distribution to a long descriptive name -NEW_NAME=mysql@MYSQL_SERVER_SUFFIX@-$version-$PLATFORM$SUFFIX +NEW_NAME=mysql@MYSQL_SERVER_SUFFIX@-$version-$platform$SUFFIX # Print the platform name for build logs -echo "PLATFORM NAME: $PLATFORM" +echo "PLATFORM NAME: $platform" BASE2=$TMP/$NEW_NAME rm -rf $BASE2 |