aboutsummaryrefslogtreecommitdiffstats
path: root/capplet
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-16 07:15:15 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-16 07:15:58 +0800
commitab9d256343093b6dc7002c4242230c241dc3a353 (patch)
tree1ae7f676b6eb1188a4f126274aabdf5ae754e575 /capplet
parent99bd309e0d69ff6345e688b92f041b34cc77ab8d (diff)
downloadgsoc2013-evolution-ab9d256343093b6dc7002c4242230c241dc3a353.tar
gsoc2013-evolution-ab9d256343093b6dc7002c4242230c241dc3a353.tar.gz
gsoc2013-evolution-ab9d256343093b6dc7002c4242230c241dc3a353.tar.bz2
gsoc2013-evolution-ab9d256343093b6dc7002c4242230c241dc3a353.tar.lz
gsoc2013-evolution-ab9d256343093b6dc7002c4242230c241dc3a353.tar.xz
gsoc2013-evolution-ab9d256343093b6dc7002c4242230c241dc3a353.tar.zst
gsoc2013-evolution-ab9d256343093b6dc7002c4242230c241dc3a353.zip
Fix missing linker flags in the correct Makefile.am.
Diffstat (limited to 'capplet')
-rw-r--r--capplet/Makefile.am3
-rw-r--r--capplet/settings/Makefile.am5
2 files changed, 4 insertions, 4 deletions
diff --git a/capplet/Makefile.am b/capplet/Makefile.am
index 0973ebc92f..51e17dc1d3 100644
--- a/capplet/Makefile.am
+++ b/capplet/Makefile.am
@@ -4,7 +4,6 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/widgets \
-I$(top_srcdir)/widgets/misc \
-I$(top_srcdir) \
- -I$(top_srcdir)/e-util \
-I$(top_srcdir)/em-format \
-I$(top_srcdir)/mail \
-I$(top_srcdir)/composer \
@@ -61,6 +60,4 @@ evolution_settings_LDADD = \
$(top_builddir)/filter/libfilter.la \
$(top_builddir)/mail/libevolution-mail.la \
$(top_builddir)/capplet/settings/libevolution-mail-settings.la
- $(top_builddir)/shell/libeshell.la \
- $(top_builddir)/e-util/libeutil.la
diff --git a/capplet/settings/Makefile.am b/capplet/settings/Makefile.am
index c3df948f73..b75ffdb52b 100644
--- a/capplet/settings/Makefile.am
+++ b/capplet/settings/Makefile.am
@@ -3,6 +3,7 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/widgets \
-I$(top_srcdir)/widgets/misc \
-I$(top_srcdir) \
+ -I$(top_srcdir)/e-util \
-I$(top_srcdir)/em-format \
-I$(top_srcdir)/mail \
-I$(top_srcdir)/composer \
@@ -64,6 +65,8 @@ libevolution_mail_settings_la_LIBADD = \
$(GNOME_PLATFORM_LIBS) \
$(top_builddir)/widgets/misc/libemiscwidgets.la \
$(top_builddir)/filter/libfilter.la \
- $(top_builddir)/mail/libevolution-mail.la
+ $(top_builddir)/mail/libevolution-mail.la \
+ $(top_builddir)/shell/libeshell.la \
+ $(top_builddir)/e-util/libeutil.la