diff options
author | Kent Boortz <kent@kent-amd64> | 2009-01-23 02:59:03 +0100 |
---|---|---|
committer | Kent Boortz <kent@kent-amd64> | 2009-01-23 02:59:03 +0100 |
commit | e610f61d0e9f679a195b851fbef81ec0c48f340e (patch) | |
tree | 8a25caccc327d9c4ca6c5ddfcbe571b3a5c2259d /scripts | |
parent | e48b721d5c176154d317268fcfb8b19ab9e5840f (diff) | |
download | mariadb-git-e610f61d0e9f679a195b851fbef81ec0c48f340e.tar.gz |
From 5.0.48 the NDB client libraries has been missing in the cluster
packages, this is now corrected (Bug#42278)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_binary_distribution.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index e5e08038bff..f156ea3b986 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -372,8 +372,8 @@ fi # NDB Cluster if [ x$NDBCLUSTER = x1 ]; then - ( cd ndb ; @MAKE@ DESTDIR=$BASE/ndb-stage install ) - ( cd mysql-test/ndb ; @MAKE@ DESTDIR=$BASE/ndb-stage install ) + ( cd ndb ; @MAKE@ DESTDIR=$BASE/ndb-stage install pkglibdir=@pkglibdir@ ) + ( cd mysql-test/ndb ; @MAKE@ DESTDIR=$BASE/ndb-stage install pkglibdir=@pkglibdir@ ) $CP $BASE/ndb-stage@bindir@/* $BASE/bin/. $CP $BASE/ndb-stage@libexecdir@/* $BASE/bin/. $CP $BASE/ndb-stage@pkglibdir@/* $BASE/lib/. |