diff options
author | unknown <kent@mysql.com> | 2005-05-18 12:49:43 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-05-18 12:49:43 +0200 |
commit | a2502ed415bbc08dd739775cff83f649e24c96a3 (patch) | |
tree | 0faf32ca46f35c1c09f745d14d38ca5227e817df /scripts | |
parent | d8c83c5f9810a8191e151a9b53026e70940784c4 (diff) | |
download | mariadb-git-a2502ed415bbc08dd739775cff83f649e24c96a3.tar.gz |
make_binary_distribution.sh:
To be safe, put "..." around variables to the test command
scripts/make_binary_distribution.sh:
To be safe, put "..." around variables to the test command
Diffstat (limited to 'scripts')
-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 d273e67ec01..ecfe9e8be88 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -315,7 +315,7 @@ system=`echo $system | sed -e 's/solaris2.\([0-9]*\)/solaris\1/g'` system=`echo $system | sed -e 's/sco3.2v\(.*\)/openserver\1/g'` # Use the override --machine if present -if [ -n $MACHINE ] ; then +if [ -n "$MACHINE" ] ; then machine=$MACHINE fi |