diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-02-01 01:38:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:40 -0500 |
commit | 658f9babe1719ac6ecd3a05286ff055415ad4c93 (patch) | |
tree | 1e6beeb979dd9e8794d13cf07faeb16cc20d6b63 /source4/build/m4 | |
parent | feb1c8ea82645ae361099ce992cff3c2d45abcdc (diff) | |
download | samba-658f9babe1719ac6ecd3a05286ff055415ad4c93.tar.gz samba-658f9babe1719ac6ecd3a05286ff055415ad4c93.tar.bz2 samba-658f9babe1719ac6ecd3a05286ff055415ad4c93.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
(This used to be commit 6b42029de99011986c1fa7bfd5833dbbbf476206)
Diffstat (limited to 'source4/build/m4')
-rw-r--r-- | source4/build/m4/check_path.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/m4/check_path.m4 b/source4/build/m4/check_path.m4 index 2f5f793a1d..00844da83c 100644 --- a/source4/build/m4/check_path.m4 +++ b/source4/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) # |