From: Keith Packard Date: Sun, 2 Mar 2003 08:00:24 +0000 (+0000) Subject: Make default confdir point to sysconfdir X-Git-Tag: fc-2_1_91~7 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ad9b233c98d4da08178503f6db9a43708e2a7df0;p=fontconfig.git Make default confdir point to sysconfdir --- diff --git a/configure.in b/configure.in index 4cba6ef..f03390e 100644 --- a/configure.in +++ b/configure.in @@ -271,13 +271,13 @@ AC_ARG_WITH(confdir, [ --with-confdir=DIR Use DIR to store case "$confdir" in no|yes) - confdir=/etc/fonts + confdir='${sysconfdir}'/fonts ;; *) ;; esac AC_SUBST(confdir) -CONFDIR='${confdir}' +CONFDIR=${confdir} AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory]) AC_SUBST(CONFDIR)