From ca58937da3058d1d9b8c5ddbcc36d3d0ca8ad714 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 24 Oct 2014 23:40:24 +0300 Subject: [PATCH] configure.ac: also print ${datarootdir} in summary It goes something like: ${XLOCALEDIR} -> ${datarootdir}/locale/X11 -> ${prefix}/share/locale/X11 -> /usr/share/locale/X11 But AC_MSG_RESULT only performs one substitution. Instead of starting to expand this stuff manually, just print datarootdir so all the pieces are there. Signed-off-by: Ran Benita --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index cb176ee..136bee3 100644 --- a/configure.ac +++ b/configure.ac @@ -209,6 +209,7 @@ AC_MSG_RESULT([ prefix: ${prefix} includedir: ${includedir} lib dir: ${libdir} + datarootdir: ${datarootdir} XKB config root: ${XKBCONFIGROOT} X11 locale root: ${XLOCALEDIR} ])