Commit ca58937da3058d1d9b8c5ddbcc36d3d0ca8ad714

Ran Benita 2014-10-24T23:40:24

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 <ran234@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
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}
 ])