diff options
author | Daniel Macks <dmacks@netspace.org> | 2009-07-09 22:52:06 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-09 22:52:06 +0800 |
commit | 2cddd404600c93fc9942d809bb25ddfdc7b5df0c (patch) | |
tree | d31356c79ad17c5e38c22f5198b4dad50c830c6c /plugins/calendar-weather | |
parent | 0455efd8bbbf0f1ddf2dd449b4aa5896dc33c6d2 (diff) | |
download | gsoc2013-evolution-2cddd404600c93fc9942d809bb25ddfdc7b5df0c.tar gsoc2013-evolution-2cddd404600c93fc9942d809bb25ddfdc7b5df0c.tar.gz gsoc2013-evolution-2cddd404600c93fc9942d809bb25ddfdc7b5df0c.tar.bz2 gsoc2013-evolution-2cddd404600c93fc9942d809bb25ddfdc7b5df0c.tar.lz gsoc2013-evolution-2cddd404600c93fc9942d809bb25ddfdc7b5df0c.tar.xz gsoc2013-evolution-2cddd404600c93fc9942d809bb25ddfdc7b5df0c.tar.zst gsoc2013-evolution-2cddd404600c93fc9942d809bb25ddfdc7b5df0c.zip |
Bug 588106 – Makefile.am misuses *_LDFLAGS
Diffstat (limited to 'plugins/calendar-weather')
-rw-r--r-- | plugins/calendar-weather/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/calendar-weather/Makefile.am b/plugins/calendar-weather/Makefile.am index f90d26e7e3..360555810a 100644 --- a/plugins/calendar-weather/Makefile.am +++ b/plugins/calendar-weather/Makefile.am @@ -25,10 +25,11 @@ plugin_DATA = org-gnome-calendar-weather.eplug plugin_LTLIBRARIES = liborg-gnome-calendar-weather.la liborg_gnome_calendar_weather_la_SOURCES = calendar-weather.c -liborg_gnome_calendar_weather_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) $(LIBGWEATHER_LIBS) +liborg_gnome_calendar_weather_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) liborg_gnome_calendar_weather_la_LIBADD = \ $(top_builddir)/calendar/gui/libevolution-calendar.la \ - $(EVOLUTION_CALENDAR_LIBS) + $(EVOLUTION_CALENDAR_LIBS) \ + $(LIBGWEATHER_LIBS) EXTRA_DIST = \ org-gnome-calendar-weather.eplug.xml \ |