Browse Source

Incorrect test if "--short-product-tag=" was given or not

pull/374/head
MySQL Build Team 17 years ago
parent
commit
e3d7170998
  1. 2
      scripts/make_binary_distribution.sh

2
scripts/make_binary_distribution.sh

@ -116,7 +116,7 @@ case $PLATFORM in
esac
# Change the distribution to a long descriptive name
if [ x"$SHORT_PRODUCT_TAG" = x"" ] ; then
if [ x"$SHORT_PRODUCT_TAG" != x"" ] ; then
NEW_NAME=mysql-$SHORT_PRODUCT_TAG-@VERSION@-$PLATFORM$SUFFIX
else
NEW_NAME=mysql@MYSQL_SERVER_SUFFIX@-@VERSION@-$PLATFORM$SUFFIX

Loading…
Cancel
Save