diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-06 06:34:18 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-06 06:34:18 +0800 |
commit | 3e0211a7d2b5a6b585f53addff3bc24f7cfb73b0 (patch) | |
tree | 32dfa2f1652652e3029732673c0d1b5b1aad3540 /camel/Makefile.am | |
parent | fefb7820db99e63564395beeec82949ccb0e3b9f (diff) | |
download | gsoc2013-evolution-3e0211a7d2b5a6b585f53addff3bc24f7cfb73b0.tar.gz gsoc2013-evolution-3e0211a7d2b5a6b585f53addff3bc24f7cfb73b0.tar.zst gsoc2013-evolution-3e0211a7d2b5a6b585f53addff3bc24f7cfb73b0.zip |
Define in terms of privincludedir. (camellibexecdir): Define in terms of
* Makefile.am (libcamelincludedir): Define in terms of
privincludedir.
(camellibexecdir): Define in terms of privlibexecdir
(libcamel_la_LDFLAGS): Remove -rpath. (automake will add that)
* providers/imap/Makefile.am (libcamelimapincludedir): Define in
terms of privincludedir.
(INCLUDES): Remove -I$(includedir)
* providers/local/Makefile.am: Likewise
* providers/nntp/Makefile.am: Likewise
* providers/pop3/Makefile.am: Likewise
* providers/sendmail/Makefile.am: Likewise
* providers/smtp/Makefile.am: Likewise
svn path=/trunk/; revision=19775
Diffstat (limited to 'camel/Makefile.am')
-rw-r--r-- | camel/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/Makefile.am b/camel/Makefile.am index 97f445024c..119798b233 100644 --- a/camel/Makefile.am +++ b/camel/Makefile.am @@ -2,9 +2,9 @@ SUBDIRS = . providers tests -libcamelincludedir = $(includedir)/evolution-$(BASE_VERSION)/camel +libcamelincludedir = $(privincludedir)/camel -camellibexecdir = $(libexecdir)/evolution/$(BASE_VERSION)/camel/ +camellibexecdir = $(privlibexecdir)/camel camellibexec_PROGRAMS = camel-lock-helper camel-index-control privlib_LTLIBRARIES = libcamel.la @@ -221,7 +221,7 @@ libcamelinclude_HEADERS = \ camel.h \ string-utils.h -libcamel_la_LDFLAGS = -version-info 0:0:0 -rpath $(libdir) +libcamel_la_LDFLAGS = -version-info 0:0:0 libcamel_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ |