From 79f148e8d9e733318bbeadc1a1db34956863a92d Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Mon, 26 Jun 2000 05:05:13 +0000 Subject: [PATCH] Fix locale dir. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2511 57a11ea4-9604-0410-9ed3-97b8803252fd --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9bc07bbb96..4e4754ef06 100755 --- a/configure +++ b/configure @@ -2364,7 +2364,7 @@ if test "${with_locale_dir+set}" = set; then withval="$with_locale_dir" LOCALE_DIR="$with_locale_dir" else - LOCALE_DIR="\${localedatadir}/locale" + LOCALE_DIR="\${prefix}/share/locale" fi diff --git a/configure.in b/configure.in index 3ec21f6f00..83c0550812 100644 --- a/configure.in +++ b/configure.in @@ -117,7 +117,7 @@ AC_ARG_ENABLE( warnings, AC_ARG_WITH( locale-dir, [ --with-locale-dir=PATH specify where to look for locale-specific information], LOCALE_DIR="$with_locale_dir", - LOCALE_DIR="\${localedatadir}/locale") + LOCALE_DIR="\${prefix}/share/locale") AC_SUBST(LOCALE_DIR)