From 34a03295d26d96302b4420c673afb33bdf875e77 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 26 Jan 2006 12:59:55 +0000 Subject: r13163: as we don't import the raw magic configure vars for libdir, datadir, sysconfdir,localstatedir into our Makefile we need to expand them in configure I'll maybe rework this later but for now this works metze (This used to be commit 615b82f7c73ff52ab62489ec635aefecf2b2f04c) --- source4/build/m4/check_path.m4 | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 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 b45368ccd9..293aac2427 100644 --- a/source4/build/m4/check_path.m4 +++ b/source4/build/m4/check_path.m4 @@ -12,20 +12,21 @@ dnl AC_PREFIX_DEFAULT(/usr/local/samba) # Defaults and --without-fhs - logfilebase="\${localstatedir}" - lockdir="\${localstatedir}/locks" - piddir="\${localstatedir}/run" - privatedir="\${prefix}/private" +logfilebase="${localstatedir}" +lockdir="${localstatedir}/locks" +piddir="${localstatedir}/run" +privatedir="${prefix}/private" AC_ARG_WITH(fhs, [ --with-fhs Use FHS-compliant paths (default=no)], - lockdir="\${localstatedir}/lib/samba" - piddir="\${localstatedir}/run/samba" - logfilebase="\${localstatedir}/log/samba" - privatedir="\${localstatedir}/lib/samba/private" - libdir="\${libdir}/samba" - datadir="\${datadir}/samba" - includedir="\${includedir}/samba-4.0" + lockdir="${localstatedir}/lib/samba" + piddir="${localstatedir}/run/samba" + logfilebase="${localstatedir}/log/samba" + privatedir="${localstatedir}/lib/samba/private" + sysconfdir="${sysconfdir}/samba" + libdir="${libdir}/samba" + datadir="${datadir}/samba" + includedir="${includedir}/samba-4.0" ) ################################################# -- cgit