From 658f9babe1719ac6ecd3a05286ff055415ad4c93 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 1 Feb 2006 01:38:39 +0000 Subject: 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) --- source4/build/m4/check_path.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (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 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) # -- cgit