diff options
author | unknown <lenz@mysql.com> | 2003-01-29 09:22:20 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-01-29 09:22:20 +0100 |
commit | 7e78a9490b7c17363193f93bfd418fecf5d2826e (patch) | |
tree | 86945d1edb65d4ca7a2edc5c8e3048f58a7672ed /scripts | |
parent | 6dc436fa86ed69a5c0a9fcb3f831ae45a091505b (diff) | |
download | mariadb-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.sh | 2 |
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 \ |