mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
set libdir to ../lib64 on x86-64 platforms
(This used to be ctdb commit a9f851caec2525ccbb3a6d6283eaef52b89a4eb2)
This commit is contained in:
parent
62afe2ff71
commit
976e76f408
@ -14,6 +14,15 @@ AC_DEFUN([SMB_ENABLE], [echo -n ""])
|
||||
AC_INIT(ctdb.h)
|
||||
AC_CONFIG_SRCDIR([server/ctdbd.c])
|
||||
|
||||
case `uname -m` in
|
||||
x86_64)
|
||||
libdir='${exec_prefix}/lib64'
|
||||
;;
|
||||
*)
|
||||
libdir='${exec_prefix}/lib'
|
||||
;;
|
||||
esac
|
||||
|
||||
case `uname` in
|
||||
Linux*)
|
||||
CTDB_SYSTEM_OBJ=common/system_linux.o
|
||||
|
Loading…
Reference in New Issue
Block a user