diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-02-01 01:38:39 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2006-02-01 01:38:39 +0000 |
commit | 27ff2302047c738d1007d612af2847e752b66f14 (patch) | |
tree | fc44e2892ad5fe351f5547161571135617fd107f /source/build/m4 | |
parent | 98579d18731f5561e43775d9542dfb96dd8a3aaf (diff) | |
download | samba-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
Diffstat (limited to 'source/build/m4')
-rw-r--r-- | source/build/m4/check_path.m4 | 4 |
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) # |