summaryrefslogtreecommitdiff
path: root/scripts/make_binary_distribution.sh
diff options
context:
space:
mode:
authortimothy.smith@sun.com <>2009-09-29 21:11:41 +0200
committerTimothy <Timothy.Smith@Sun.COM>2009-09-29 21:11:41 +0200
commit92485639d636a0455f8d8a4a58f3f63d31ba5eaa (patch)
tree76a3e3d0ffe70d1d5d4cf89084bdc8eb76b9ff62 /scripts/make_binary_distribution.sh
parentbac9e9a02e7f9c6622c043ad0caacd4f1c7b8e0a (diff)
downloadmariadb-git-92485639d636a0455f8d8a4a58f3f63d31ba5eaa.tar.gz
make_binary_distribution.sh: fix path for installing the MALLOC_LIB (to $DEST/lib)
Diffstat (limited to 'scripts/make_binary_distribution.sh')
-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 27fe2acb447..bd0f4f99ca6 100644
--- a/scripts/make_binary_distribution.sh
+++ b/scripts/make_binary_distribution.sh
@@ -298,7 +298,7 @@ if [ x"$BASE_SYSTEM" != x"netware" ] ; then
# If requested, add a malloc library .so into pkglibdir for use
# by mysqld_safe
if [ -n "$MALLOC_LIB" ]; then
- cp "$MALLOC_LIB" '@pkglibdir@'
+ cp "$MALLOC_LIB" "$DEST/lib/"
fi
# FIXME let this script be in "bin/", where it is in the RPMs?