Commit 4dca6240 authored by matt@mysql.com's avatar matt@mysql.com

make_binary_distribution.sh:

  Use portable check for empty string.
parent 56fa40e5
...@@ -315,8 +315,8 @@ system=`echo $system | sed -e 's/solaris2.\([0-9]*\)/solaris\1/g'` ...@@ -315,8 +315,8 @@ system=`echo $system | sed -e 's/solaris2.\([0-9]*\)/solaris\1/g'`
system=`echo $system | sed -e 's/sco3.2v\(.*\)/openserver\1/g'` system=`echo $system | sed -e 's/sco3.2v\(.*\)/openserver\1/g'`
# Use the override --machine if present # Use the override --machine if present
if [ $MACHINE != "" ] ; then if [ -n $MACHINE ] ; then
machine= $MACHINE machine=$MACHINE
fi fi
# Change the distribution to a long descriptive name # Change the distribution to a long descriptive name
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment