From 76ec239ccd53f0e37569d85af4363123eea7db1a Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 15 Dec 2005 19:23:35 +0000 Subject: r12266: add --with-libdir option to overwrite the result that is set by --with-fhs=yes/no metze (This used to be commit 8e3b0a99979021540a7fc741c441c6cc647755fe) --- source4/build/m4/check_path.m4 | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'source4/build/m4/check_path.m4') diff --git a/source4/build/m4/check_path.m4 b/source4/build/m4/check_path.m4 index 3e46c16cbf..ae9aa07594 100644 --- a/source4/build/m4/check_path.m4 +++ b/source4/build/m4/check_path.m4 @@ -121,6 +121,19 @@ AC_ARG_WITH(swatdir, ;; esac]) +################################################# +# set lib directory location +AC_ARG_WITH(libdir, +[ --with-libdir=DIR Where to put modules files (\$libdir)], +[ case "$withval" in + yes|no) + AC_MSG_WARN([--with-libdir called without argument - will use default]) + ;; + * ) + libdir="$withval" + ;; + esac]) + AC_SUBST(configdir) AC_SUBST(lockdir) AC_SUBST(piddir) -- cgit