aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-lock-client.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-01-23 04:08:56 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-01-23 04:08:56 +0800
commit5a2fc93d303f227d3f6fe80f4561b6fc37fd220f (patch)
treef6049932bb5d0dece5bc148e15730e8be4ad1861 /camel/camel-lock-client.c
parentbc61f8e11ccdb24c8a5ad4efafb31cfb097733fe (diff)
downloadgsoc2013-evolution-5a2fc93d303f227d3f6fe80f4561b6fc37fd220f.tar
gsoc2013-evolution-5a2fc93d303f227d3f6fe80f4561b6fc37fd220f.tar.gz
gsoc2013-evolution-5a2fc93d303f227d3f6fe80f4561b6fc37fd220f.tar.bz2
gsoc2013-evolution-5a2fc93d303f227d3f6fe80f4561b6fc37fd220f.tar.lz
gsoc2013-evolution-5a2fc93d303f227d3f6fe80f4561b6fc37fd220f.tar.xz
gsoc2013-evolution-5a2fc93d303f227d3f6fe80f4561b6fc37fd220f.tar.zst
gsoc2013-evolution-5a2fc93d303f227d3f6fe80f4561b6fc37fd220f.zip
Update to the new $(BASE_VERSION)-versioned path. Likewise. Likewise.
* providers/imap/Makefile.am (libcamelimapincludedir): Update to the new $(BASE_VERSION)-versioned path. * providers/smtp/Makefile.am (libcamelsmtpincludedir): Likewise. * providers/sendmail/Makefile.am (libcamelsendmailincludedir): Likewise. * providers/pop3/Makefile.am (libcamelpop3includedir): Likewise. * providers/nntp/Makefile.am (libcamelnntpincludedir): Likewise. * providers/local/Makefile.am (libcamellocalincludedir): Likewise. * camel-lock-client.c (camel_lock_helper_init): Use CAMEL_LIBEXECDIR instead of CAMEL_SBINDIR to find camel-lock-helper. * Makefile.am: Install camel-lock-helper and camel-index-control in $(libexec)/evolution/$(BASE_VERSION)/camel. Install libcamel.la in $privlibdir. (install-exec-hook): Update for the new location of camel-lock-helper. (libcamelincludedir): Version using $(BASE_VERSION). (INCLUDES): Define CAMEL_LIBEXECDIR. svn path=/trunk/; revision=19554
Diffstat (limited to 'camel/camel-lock-client.c')
-rw-r--r--camel/camel-lock-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-lock-client.c b/camel/camel-lock-client.c
index 99c8fd8329..dafdf46431 100644
--- a/camel/camel-lock-client.c
+++ b/camel/camel-lock-client.c
@@ -135,7 +135,7 @@ static int camel_lock_helper_init(CamelException *ex)
close(lock_stdout_pipe[1]);
for (i=3;i<255;i++)
close(i);
- execl(CAMEL_SBINDIR "/camel-lock-helper", "camel-lock-helper", NULL);
+ execl(CAMEL_LIBEXECDIR "/camel-lock-helper", "camel-lock-helper", NULL);
d(fprintf(stderr, "shit, couldn't exec lock helper!\n"));
/* it'll pick this up when it tries to use us */
exit(255);