svn commit: samba r13269 - in branches/SAMBA_4_0/source/build/m4: .

abartlet at samba.org abartlet at samba.org
Wed Feb 1 01:38:41 GMT 2006


Author: abartlet
Date: 2006-02-01 01:38:39 +0000 (Wed, 01 Feb 2006)
New Revision: 13269

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13269

Log:
${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

Modified:
   branches/SAMBA_4_0/source/build/m4/check_path.m4


Changeset:
Modified: branches/SAMBA_4_0/source/build/m4/check_path.m4
===================================================================
--- branches/SAMBA_4_0/source/build/m4/check_path.m4	2006-01-31 23:37:56 UTC (rev 13268)
+++ branches/SAMBA_4_0/source/build/m4/check_path.m4	2006-02-01 01:38:39 UTC (rev 13269)
@@ -15,7 +15,7 @@
 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 @@
 #################################################
 # 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)
   #



More information about the samba-cvs mailing list