More build system work

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2366 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2000-05-20 12:11:02 +00:00
parent 02101b8cfd
commit 7d40ada688
3 changed files with 5 additions and 3 deletions

View File

@ -28,7 +28,9 @@ exec_prefix=@exec_prefix@
libdir=@libdir@
# datadir is usually /usr/share/
datadir=$(prefix)/@DATADIRNAME@
datadir=@datadir@
localedatadir=$(prefix)/@DATADIRNAME@
# localstatedir is usually /var/
localstatedir=@localstatedir@

2
configure vendored
View File

@ -1661,7 +1661,7 @@ if test "${with_locale_dir+set}" = set; then
withval="$with_locale_dir"
LOCALE_DIR="$with_locale_dir"
else
LOCALE_DIR="$datadir/locale"
LOCALE_DIR="\${localedatadir}/locale"
fi

View File

@ -89,7 +89,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="$datadir/locale")
LOCALE_DIR="\${localedatadir}/locale")
AC_SUBST(LOCALE_DIR)