diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-13 02:05:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:07 -0500 |
commit | 3cad0b87dc55f8eab9b00cd3aa01e817b39a5d62 (patch) | |
tree | 4d5c121cfc179a40e944b8bca60f9df32fbd97c2 /source4/build/m4 | |
parent | a1b295ed4823ce8d06f830b8db9a5d965c934b54 (diff) | |
download | samba-3cad0b87dc55f8eab9b00cd3aa01e817b39a5d62.tar.gz samba-3cad0b87dc55f8eab9b00cd3aa01e817b39a5d62.tar.bz2 samba-3cad0b87dc55f8eab9b00cd3aa01e817b39a5d62.zip |
r14281: Pull apart LIBDIR and MODULESDIR
Move architecture-independent data to DATADIR (was LIBDIR)
(This used to be commit 2c7b62a861f702067e8df4c3239ac7e377631a15)
Diffstat (limited to 'source4/build/m4')
-rw-r--r-- | source4/build/m4/check_path.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/build/m4/check_path.m4 b/source4/build/m4/check_path.m4 index 00844da83c..b5654ac25b 100644 --- a/source4/build/m4/check_path.m4 +++ b/source4/build/m4/check_path.m4 @@ -16,6 +16,7 @@ logfilebase="${localstatedir}" lockdir="${localstatedir}/locks" piddir="${localstatedir}/run" privatedir="\${prefix}/private" +modulesdir="\${prefix}/modules" winbindd_socket_dir="${localstatedir}/run/winbind_pipe" AC_ARG_WITH(fhs, @@ -25,7 +26,7 @@ AC_ARG_WITH(fhs, logfilebase="${localstatedir}/log/samba" privatedir="${localstatedir}/lib/samba/private" sysconfdir="${sysconfdir}/samba" - libdir="${libdir}/samba" + modulesdir="${libdir}/samba" datadir="${datadir}/samba" includedir="${includedir}/samba-4.0" winbindd_socket_dir="${localstatedir}/run/samba/winbind_pipe" @@ -119,6 +120,7 @@ AC_SUBST(privatedir) AC_SUBST(bindir) AC_SUBST(sbindir) AC_SUBST(winbindd_socket_dir) +AC_SUBST(modulesdir) ################################################# # set prefix for 'make test' |