summaryrefslogtreecommitdiff
path: root/ctdb/configure.rpm
diff options
context:
space:
mode:
authorMartin Schwenke <martin@meltin.net>2014-09-02 16:18:01 +1000
committerAmitay Isaacs <amitay@samba.org>2014-09-10 01:36:14 +0200
commit05f08d5148e4df8c5bed13023824f030efebf26e (patch)
treeb2fd5940c21ee72739e0f7027f1613ef42f8a4a0 /ctdb/configure.rpm
parent4cb92e42f2d4753332d3ddddf2a87fc678afd306 (diff)
downloadsamba-05f08d5148e4df8c5bed13023824f030efebf26e.tar.gz
ctdb-build: Don't try to set lib64 directory automatically in build
Just install into lib/ and let packagers decide on this policy, since it can vary between distributions. Update our packaging files accordingly. A secondary matter is that things are incorrectly installed into lib64/ when building with 32-bit userspace on a 64-bit kernel. If this is done then it should depend on the architecture of the compiler. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
Diffstat (limited to 'ctdb/configure.rpm')
-rwxr-xr-xctdb/configure.rpm8
1 files changed, 8 insertions, 0 deletions
diff --git a/ctdb/configure.rpm b/ctdb/configure.rpm
index 9cecb86e046..32e6673d310 100755
--- a/ctdb/configure.rpm
+++ b/ctdb/configure.rpm
@@ -1,9 +1,17 @@
+#!/bin/sh
+
+if gcc -dM -E - </dev/null | grep -Eq '__(x86_64|powerpc64)__' ; then
+ _libdir=/usr/lib64
+else
+ _libdir=/usr/lib
+fi
CFLAGS="-Wall -g -D_GNU_SOURCE" ./configure \
--builtin-libraries=replace,popt \
--bundled-libraries=!talloc,!tevent,!tdb \
--minimum-library-version=talloc:2.0.8,tdb:1.2.11,tevent:0.9.16 \
--prefix=/usr \
+ --libdir=${_libdir} \
--sysconfdir=/etc \
--mandir=/usr/man \
--localstatedir=/var \