[PATCH] Match luit locale.alias location to libX11 default
Dan Nicholson
dbn.lists at gmail.com
Thu Sep 20 06:16:01 PDT 2007
Luit expects to find the locale.alias file in ${libdir}/X11/locale. However,
libX11 installs the locale files in ${datadir}/X11/locale, by default.
---
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 1ee5085..058c2f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,9 +36,9 @@ AC_CHECK_LIB(z, gzopen,, AC_MSG_ERROR([zlib not found]))
AC_ARG_WITH(localealiasfile,
AC_HELP_STRING([--with-localealiasfile=<path>],
- [The locale alias file (default: ${libdir}/X11/locale/locale.alias)]),
+ [The locale alias file (default: ${datadir}/X11/locale/locale.alias)]),
[LOCALEALIASFILE="$withval"],
- [LOCALEALIASFILE=${libdir}/X11/locale/locale.alias])
+ [LOCALEALIASFILE=${datadir}/X11/locale/locale.alias])
AC_SUBST([LOCALEALIASFILE])
# Checks for pkg-config packages
--
1.5.3.1
More information about the xorg
mailing list