diff options
author | Rodney Dawes <dobey@novell.com> | 2005-01-11 06:14:36 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2005-01-11 06:14:36 +0800 |
commit | ac271b80ee92fe4fcad46847aa93fc9a80a26a76 (patch) | |
tree | 0ed9f8504be4a07a94ee2da4f949fd3f9f11577d /plugins | |
parent | bab92a55dca4318b96cab61c27373ed10d0924b0 (diff) | |
download | gsoc2013-evolution-ac271b80ee92fe4fcad46847aa93fc9a80a26a76.tar gsoc2013-evolution-ac271b80ee92fe4fcad46847aa93fc9a80a26a76.tar.gz gsoc2013-evolution-ac271b80ee92fe4fcad46847aa93fc9a80a26a76.tar.bz2 gsoc2013-evolution-ac271b80ee92fe4fcad46847aa93fc9a80a26a76.tar.lz gsoc2013-evolution-ac271b80ee92fe4fcad46847aa93fc9a80a26a76.tar.xz gsoc2013-evolution-ac271b80ee92fe4fcad46847aa93fc9a80a26a76.tar.zst gsoc2013-evolution-ac271b80ee92fe4fcad46847aa93fc9a80a26a76.zip |
Clean up spacing (liborg_gnome_send_options_la_LIBADD): Don't specify the
2005-01-10 Rodney Dawes <dobey@novell.com>
* Makefile.am (INCLUDES): Clean up spacing
(liborg_gnome_send_options_la_LIBADD): Don't specify the path to
the la file directly, use the _LIBS variables that correspond with
those in INCLUDES to link to the correct libraries
svn path=/trunk/; revision=28339
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/send-options/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/send-options/Makefile.am | 10 |
2 files changed, 13 insertions, 4 deletions
diff --git a/plugins/send-options/ChangeLog b/plugins/send-options/ChangeLog index 07ed65cbad..d1f4a20a47 100644 --- a/plugins/send-options/ChangeLog +++ b/plugins/send-options/ChangeLog @@ -1,3 +1,10 @@ +2005-01-10 Rodney Dawes <dobey@novell.com> + + * Makefile.am (INCLUDES): Clean up spacing + (liborg_gnome_send_options_la_LIBADD): Don't specify the path to + the la file directly, use the _LIBS variables that correspond with + those in INCLUDES to link to the correct libraries + 2005-01-10 Chenthill Palanisamy <pchenthill@novell.com> * MakeFile.am: diff --git a/plugins/send-options/Makefile.am b/plugins/send-options/Makefile.am index f025d016c6..e2af236f43 100644 --- a/plugins/send-options/Makefile.am +++ b/plugins/send-options/Makefile.am @@ -1,8 +1,8 @@ INCLUDES = \ - -I$(top_srcdir)\ + -I$(top_srcdir) \ -I$(top_srcdir)/camel \ - $(EVOLUTION_MAIL_CFLAGS)\ - $(CAMEL_GROUPWISE_CFLAGS) + $(EVOLUTION_MAIL_CFLAGS) \ + $(CAMEL_GROUPWISE_CFLAGS) @EVO_PLUGIN_RULE@ @@ -11,6 +11,8 @@ plugin_LTLIBRARIES = liborg-gnome-send-options.la liborg_gnome_send_options_la_SOURCES = send-options.c liborg_gnome_send_options_la_LDFLAGS = -module -avoid-version -liborg_gnome_send_options_la_LIBADD= $(prefix)/lib/libegroupwise-1.2.la +liborg_gnome_send_options_la_LIBADD = \ + $(EVOLUTION_MAIL_LIBS) \ + $(CAMEL_GROUPWISE_LIBS) EXTRA_DIST = org-gnome-send-options.eplug.in |