diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-24 03:34:27 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-24 03:34:27 +0800 |
commit | a47f03c9bc4e2a4a6372eae5ad89b0b88d0eae25 (patch) | |
tree | 64627315e723345f762c3abe99987d1050f8db19 | |
parent | 392239818d860883452d2e5ec2ca7fe8fa110845 (diff) | |
download | gsoc2013-evolution-a47f03c9bc4e2a4a6372eae5ad89b0b88d0eae25.tar.gz gsoc2013-evolution-a47f03c9bc4e2a4a6372eae5ad89b0b88d0eae25.tar.zst gsoc2013-evolution-a47f03c9bc4e2a4a6372eae5ad89b0b88d0eae25.zip |
(idldir): Define componentdir instead of
COMPONENT_DIR. Set it to $privlibdir/components instead of
$libdir/evolution-$(BASE_VERSION)/components.
svn path=/trunk/; revision=19593
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2003-01-23 Ettore Perazzoli <ettore@ximian.com> + + * configure.in (idldir): Define componentdir instead of + COMPONENT_DIR. Set it to $privlibdir/components instead of + $libdir/evolution-$(BASE_VERSION)/components. + 2003-01-22 Jeffrey Stedfast <fejj@ximian.com> * configure.in (MOZILLA_NSS): Simplify the whole process into diff --git a/configure.in b/configure.in index b856f36e6c..fcd02ea2e3 100644 --- a/configure.in +++ b/configure.in @@ -975,8 +975,8 @@ AC_SUBST(camel_providerdir) idldir="$datadir/idl/evolution-$BASE_VERSION" AC_SUBST(idldir) -COMPONENT_DIR=$prefix/lib/evolution-$BASE_VERSION/components -AC_SUBST(COMPONENT_DIR) +componentdir="$privlibdir/components" +AC_SUBST(componentdir) evolutionuidir="$datadir/evolution-$BASE_VERSION/ui" AC_SUBST(evolutionuidir) |