From 0cf2cb4e0ea5b3c307eb5cc049265c9e3bafba8b Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 20 Jul 2004 13:52:05 +0000 Subject: [PATCH] (datadir): New variable. (libexecdir): Commented out. (sharedstatedir): New variable. (CHISE_DIR_PREFIX): Use ${datadir}/chise instead of ${libexecdir}/chise. (CHISE_DIR_VERSION): Update to 0.3. (CHISE_DB_DIR): Use ${CHISE_DIR} instead of ${CHISE_DIR}/${target}. --- Makefile.in | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Makefile.in b/Makefile.in index 96b11be..da76f0c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -18,23 +18,30 @@ prefix = @prefix@ ## Like `prefix', but used for architecture-specific files. exec_prefix = @exec_prefix@ +datadir = @datadir@ + libdir = @libdir@ -libexecdir = @libexecdir@ +#libexecdir = @libexecdir@ #localstatedir = @localstatedir@ -target = @target@ +sharedstatedir = @sharedstatedir@ + +#target = @target@ top_builddir = @builddir@ INCLUDE_INSTALLDIR = ${prefix}/include LIB_INSTALLDIR = ${libdir} -CHISE_DIR_PREFIX = ${libexecdir}/chise -CHISE_DIR_VERSION = 0.2 +#CHISE_DIR_PREFIX = ${libexecdir}/chise +CHISE_DIR_PREFIX = ${datadir}/chise +#CHISE_DIR_PREFIX = ${sharedstatedir}/chise +CHISE_DIR_VERSION = 0.3 CHISE_DIR = ${CHISE_DIR_PREFIX}/${CHISE_DIR_VERSION} -CHISE_DB_DIR = ${CHISE_DIR}/${target} +#CHISE_DB_DIR = ${CHISE_DIR}/${target} +CHISE_DB_DIR = ${CHISE_DIR} CHISE_SI_DB_DIR = ${CHISE_DB_DIR}/db CHISE_CFLAGS = \ -- 1.7.10.4