diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-03 22:50:35 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-03 22:50:35 +0800 |
commit | 54a9260f696f5c7462f40af8f838d723ba3abeb5 (patch) | |
tree | ab87ece78582288b7dabf6635fe3f393fd042c4d /plugins/mail-notification | |
parent | b484ae1c53ce5e8075eefe907cffbcb936106397 (diff) | |
download | gsoc2013-evolution-54a9260f696f5c7462f40af8f838d723ba3abeb5.tar.gz gsoc2013-evolution-54a9260f696f5c7462f40af8f838d723ba3abeb5.tar.zst gsoc2013-evolution-54a9260f696f5c7462f40af8f838d723ba3abeb5.zip |
Fix for version removal from installed files.
svn path=/trunk/; revision=33646
Diffstat (limited to 'plugins/mail-notification')
-rw-r--r-- | plugins/mail-notification/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/mail-notification/Makefile.am | 28 |
2 files changed, 18 insertions, 16 deletions
diff --git a/plugins/mail-notification/ChangeLog b/plugins/mail-notification/ChangeLog index 30cdf8abe8..9f856d8979 100644 --- a/plugins/mail-notification/ChangeLog +++ b/plugins/mail-notification/ChangeLog @@ -1,3 +1,9 @@ +2007-06-03 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for version removal from Installed files from Gilles Dartiguelongue + + * Makefile.am: + 2007-05-19 Matthew Barnes <mbarnes@redhat.com> * Makefile.am: Fix a couple distcheck errors. diff --git a/plugins/mail-notification/Makefile.am b/plugins/mail-notification/Makefile.am index 92cb2d5349..8b93fe3e3c 100644 --- a/plugins/mail-notification/Makefile.am +++ b/plugins/mail-notification/Makefile.am @@ -1,14 +1,10 @@ -INCLUDES = \ - -I$(top_srcdir) \ +INCLUDES = \ + -I$(top_srcdir) \ -DDBUS_API_SUBJECT_TO_CHANGE=1 \ -DDBUS_VERSION=$(DBUS_VERSION) \ - $(EVOLUTION_MAIL_CFLAGS) \ - $(LIBNOTIFY_CFLAGS) - $(NMN_CFLAGS) - -LIBS = \ - $(LIBNOTIFY_LIBS) \ - $(NMN_LIBS) + $(EVOLUTION_MAIL_CFLAGS) \ + $(LIBNOTIFY_CFLAGS) \ + $(NMN_CFLAGS) @EVO_PLUGIN_RULE@ @@ -16,14 +12,14 @@ plugin_DATA = org-gnome-mail-notification.eplug plugin_LTLIBRARIES = liborg-gnome-mail-notification.la liborg_gnome_mail_notification_la_SOURCES = mail-notification.c -liborg_gnome_mail_notification_la_LDFLAGS = -module -avoid-version +liborg_gnome_mail_notification_la_LDFLAGS = \ + -module -avoid-version \ + $(LIBNOTIFY_LIBS) \ + $(NMN_LIBS) schemadir = $(GCONF_SCHEMA_FILE_DIR) -schema_in_files = apps-evolution-mail-notification.schemas.in.in -schema_DATA = $(schema_in_files:.schemas.in.in=-$(BASE_VERSION).schemas) - -%-$(BASE_VERSION).schemas.in: %.schemas.in.in - cp $< $@ +schema_in_files = apps-evolution-mail-notification.schemas.in +schema_DATA = $(schema_in_files:.schemas.in=.schemas) @INTLTOOL_SCHEMAS_RULE@ @@ -40,6 +36,6 @@ CLEANFILES = $(BUILT_SOURCES) DISTCLEANFILES = $(schema_DATA) -EXTRA_DIST = \ +EXTRA_DIST = \ org-gnome-mail-notification.eplug.xml \ $(schema_in_files) |