summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2003-01-29 09:22:20 +0100
committerunknown <lenz@mysql.com>2003-01-29 09:22:20 +0100
commit7e78a9490b7c17363193f93bfd418fecf5d2826e (patch)
tree86945d1edb65d4ca7a2edc5c8e3048f58a7672ed /scripts
parent6dc436fa86ed69a5c0a9fcb3f831ae45a091505b (diff)
downloadmariadb-git-7e78a9490b7c17363193f93bfd418fecf5d2826e.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 \