summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-02-01 01:38:39 +0000
committerAndrew Bartlett <abartlet@samba.org>2006-02-01 01:38:39 +0000
commit27ff2302047c738d1007d612af2847e752b66f14 (patch)
treefc44e2892ad5fe351f5547161571135617fd107f
parent98579d18731f5561e43775d9542dfb96dd8a3aaf (diff)
downloadsamba-27ff2302047c738d1007d612af2847e752b66f14.tar.gz
samba-27ff2302047c738d1007d612af2847e752b66f14.tar.xz
samba-27ff2302047c738d1007d612af2847e752b66f14.zip
r13269: ${prefix} is a special case in the autoconf/build system, and should
be escaped as \${prefix}, otherwise it evaluates too early as "NONE". Andrew Bartlett
-rw-r--r--source/build/m4/check_path.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/source/build/m4/check_path.m4 b/source/build/m4/check_path.m4
index 2f5f793a1da..00844da83c7 100644
--- a/source/build/m4/check_path.m4
+++ b/source/build/m4/check_path.m4
@@ -15,7 +15,7 @@ AC_PREFIX_DEFAULT(/usr/local/samba)
logfilebase="${localstatedir}"
lockdir="${localstatedir}/locks"
piddir="${localstatedir}/run"
-privatedir="${prefix}/private"
+privatedir="\${prefix}/private"
winbindd_socket_dir="${localstatedir}/run/winbind_pipe"
AC_ARG_WITH(fhs,
@@ -34,7 +34,7 @@ AC_ARG_WITH(fhs,
#################################################
# set private directory location
AC_ARG_WITH(privatedir,
-[ --with-privatedir=DIR Where to put smbpasswd ($ac_default_prefix/private)],
+[ --with-privatedir=DIR Where to put sam.ldb and other private files containing key material ($ac_default_prefix/private)],
[ case "$withval" in
yes|no)
#