X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=macros%2Fconfig-checks.m4;h=2b4f4b7e0f3fce515ffba5ea4f49ba73bcba470f;hp=1627fd1ddc8750e1b6e194f9ac17bd9d505a3d06;hb=82195e48bedce7bf1e214679c3cceb0cb33845eb;hpb=b0bcb8f6b0571592a50ce039882c9319e012a270 diff --git a/macros/config-checks.m4 b/macros/config-checks.m4 index 1627fd1d..2b4f4b7e 100644 --- a/macros/config-checks.m4 +++ b/macros/config-checks.m4 @@ -1,12 +1,11 @@ -dnl $Id: config-checks.m4,v 1.6 2005-04-28 20:50:05 bfernhomberg Exp $ dnl Autoconf macro to set the configuration directories. AC_DEFUN([AC_NETATALK_CONFIG_DIRS], [ - PKGCONFDIR="${sysconfdir}/netatalk" + PKGCONFDIR="${sysconfdir}" AC_ARG_WITH(pkgconfdir, [ --with-pkgconfdir=DIR package specific configuration in DIR - [[SYSCONF/netatalk]]], + [[$sysconfdir]]], [ if test "x$withval" != "x"; then PKGCONFDIR="$withval" @@ -15,13 +14,13 @@ AC_DEFUN([AC_NETATALK_CONFIG_DIRS], [ ) - SERVERTEXT="${PKGCONFDIR}/msg" + SERVERTEXT="${localstatedir}/netatalk/msg" AC_ARG_WITH(message-dir, - [ --with-message-dir=PATH path to server message files [[PKGCONF/msg]]], + [ --with-message-dir=PATH path to server message files [[$localstatedir/netatalk/msg/]]], [ if test x"$withval" = x"no"; then - AC_MSG_WARN([*** message-dir is mandatory and cannot be disabled, using default ***]) + AC_MSG_WARN([message-dir is mandatory and cannot be disabled, using default]) elif test "x$withval" != "x" && test x"$withval" != x"yes"; then SERVERTEXT="$withval" fi