1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

make_binary_distribution.sh: fix path for installing the MALLOC_LIB (to $DEST/lib)

This commit is contained in:
unknown
2009-09-29 21:11:41 +02:00
committed by Timothy
parent 662154b6fe
commit 503530f273

View File

@@ -298,7 +298,7 @@ if [ x"$BASE_SYSTEM" != x"netware" ] ; then
# If requested, add a malloc library .so into pkglibdir for use # If requested, add a malloc library .so into pkglibdir for use
# by mysqld_safe # by mysqld_safe
if [ -n "$MALLOC_LIB" ]; then if [ -n "$MALLOC_LIB" ]; then
cp "$MALLOC_LIB" '@pkglibdir@' cp "$MALLOC_LIB" "$DEST/lib/"
fi fi
# FIXME let this script be in "bin/", where it is in the RPMs? # FIXME let this script be in "bin/", where it is in the RPMs?