diff options
author | kent@mysql.com <> | 2005-05-18 12:49:43 +0200 |
---|---|---|
committer | kent@mysql.com <> | 2005-05-18 12:49:43 +0200 |
commit | f81e6248d23e1acc25120b48808bbba1ee9d636e (patch) | |
tree | 0faf32ca46f35c1c09f745d14d38ca5227e817df /scripts | |
parent | 72ce7299a9fb8cccdc62d5e638c6c3f4aae24c9d (diff) | |
download | mariadb-git-f81e6248d23e1acc25120b48808bbba1ee9d636e.tar.gz |
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 |