summaryrefslogtreecommitdiff
path: root/support-files/mysql.server.sh
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2002-07-23 17:04:20 +0200
committerunknown <lenz@mysql.com>2002-07-23 17:04:20 +0200
commitb42ca98d34a2e834dfc454338493fa26553c8d20 (patch)
treeb1cbd86b4f6498b6674f16eaa2a19cce19c2684e /support-files/mysql.server.sh
parentd190cae014ae549ac006c14fe03d11ac367395bf (diff)
downloadmariadb-git-b42ca98d34a2e834dfc454338493fa26553c8d20.tar.gz
- Fixed build failure in mysql.spec.sh - linking against the special
patched glibc would force static linking, which does not work with OpenSSL (which is now part of the Max binary) - RPM spec file cleanups - Init script cosmetical fix support-files/mysql.server.sh: - Fixed display output when waiting for mysqld process to shut down. support-files/mysql.spec.sh: - Reworked the build steps a little bit: the Max binary is supposed to include OpenSSL, which cannot be linked statically, thus trying to statically link against a special glibc is futile anyway. - Because of this, it is not required to make yet another build run just to compile the shared libs (saves a lot of build time) - Updated the package descriptions to reflect new configuration of the Max binary Added a %clean macro to clean up the BuildRoot afterwards
Diffstat (limited to 'support-files/mysql.server.sh')
-rw-r--r--support-files/mysql.server.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/support-files/mysql.server.sh b/support-files/mysql.server.sh
index e6a32d91e77..48bf004d758 100644
--- a/support-files/mysql.server.sh
+++ b/support-files/mysql.server.sh
@@ -140,7 +140,7 @@ case "$mode" in
sleep 1
while [ -s $pid_file -a "$flags" != aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa ]
do
- [ -z "$flags" ] && echo "Wait for mysqld to exit\c" || echo ".\c"
+ [ -z "$flags" ] && echo -n "Wait for mysqld to exit" || echo -n "."
flags=a$flags
sleep 1
done