summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorlenz@mysql.com <>2003-01-29 09:22:20 +0100
committerlenz@mysql.com <>2003-01-29 09:22:20 +0100
commitcf25397e0eab2e43cb1e7cba183890b6f93edb1d (patch)
tree86945d1edb65d4ca7a2edc5c8e3048f58a7672ed /scripts
parentd2328365e0a0db890608630aa2e7a56572acedfe (diff)
downloadmariadb-git-cf25397e0eab2e43cb1e7cba183890b6f93edb1d.tar.gz
- fixed typo for better portability (many shells don't support the "=="
operator)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/make_binary_distribution.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh
index 840ba222302..0773ccc679c 100644
--- a/scripts/make_binary_distribution.sh
+++ b/scripts/make_binary_distribution.sh
@@ -156,7 +156,7 @@ if [ -d man ] ; then
fi
$CP support-files/* $BASE/support-files
-if [ $BASE_SYSTEM == "netware" ] ; then
+if [ $BASE_SYSTEM = "netware" ] ; then
rm -f $BASE/support-files/magic \
$BASE/support-files/mysql.server \
$BASE/support-files/mysql*.spec \