diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-04-26 07:09:47 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:56 +0800 |
commit | 5bbc4cfb078d1d8d547e9b081194695a89473d9b (patch) | |
tree | e81b8e131ad1d8fa1bcb7091141e19a5594e3983 /modules/plugin-manager | |
parent | 3a69a315de9e09bdf8f429a525770723f8bbc871 (diff) | |
download | gsoc2013-evolution-5bbc4cfb078d1d8d547e9b081194695a89473d9b.tar.gz gsoc2013-evolution-5bbc4cfb078d1d8d547e9b081194695a89473d9b.tar.zst gsoc2013-evolution-5bbc4cfb078d1d8d547e9b081194695a89473d9b.zip |
Some modules missing CFLAGS/LIBS for EShell.
Diffstat (limited to 'modules/plugin-manager')
-rw-r--r-- | modules/plugin-manager/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/plugin-manager/Makefile.am b/modules/plugin-manager/Makefile.am index b84b58cb63..1e66fb4bd8 100644 --- a/modules/plugin-manager/Makefile.am +++ b/modules/plugin-manager/Makefile.am @@ -5,7 +5,8 @@ libevolution_module_plugin_manager_la_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ -DG_LOG_DOMAIN=\"evolution-plugin-manager\" \ - $(GNOME_PLATFORM_CFLAGS) + $(GNOME_PLATFORM_CFLAGS) \ + $(SHELL_CFLAGS) libevolution_module_plugin_manager_la_SOURCES = \ evolution-plugin-manager.c @@ -13,7 +14,8 @@ libevolution_module_plugin_manager_la_SOURCES = \ libevolution_module_plugin_manager_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/shell/libeshell.la \ - $(GNOME_PLATFORM_LIBS) + $(GNOME_PLATFORM_LIBS) \ + $(SHELL_LIBS) libevolution_module_plugin_manager_la_LDFLAGS = \ -module -avoid-version $(NO_UNDEFINED) |