diff options
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/GNOME_Evolution_Calendar.server.in.in (renamed from calendar/gui/GNOME_Evolution_Calendar.server.in) | 12 | ||||
-rw-r--r-- | calendar/gui/Makefile.am | 11 |
2 files changed, 12 insertions, 11 deletions
diff --git a/calendar/gui/GNOME_Evolution_Calendar.server.in b/calendar/gui/GNOME_Evolution_Calendar.server.in.in index 68fd2a07d0..ea64073540 100644 --- a/calendar/gui/GNOME_Evolution_Calendar.server.in +++ b/calendar/gui/GNOME_Evolution_Calendar.server.in.in @@ -2,7 +2,7 @@ <oaf_server iid="OAFIID:GNOME_Evolution_Calendar_iTip_ControlFactory" type="exe" - location="evolution-calendar"> + location="@LIBEXECDIR@/evolution-calendar"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> @@ -36,7 +36,7 @@ <oaf_server iid="OAFIID:GNOME_Evolution_Calendar_ShellComponent" type="exe" - location="evolution-calendar"> + location="@LIBEXECDIR@/evolution-calendar"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/Evolution/ShellComponent:1.0"/> @@ -53,7 +53,7 @@ <oaf_server iid="OAFIID:GNOME_Evolution_Calendar_ControlFactory" type="exe" - location="evolution-calendar"> + location="@LIBEXECDIR@/evolution-calendar"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> @@ -83,7 +83,7 @@ <oaf_server iid="OAFIID:GNOME_Evolution_Tasks_ControlFactory" type="exe" - location="evolution-calendar"> + location="@LIBEXECDIR@/evolution-calendar"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> @@ -113,7 +113,7 @@ <oaf_server iid="OAFIID:GNOME_Evolution_Calendar_CompEditorFactory_Factory" type="exe" - location="evolution-calendar"> + location="@LIBEXECDIR@/evolution-calendar"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> @@ -138,7 +138,7 @@ <oaf_server iid="OAFIID:GNOME_Evolution_Calendar_ConfigControlFactory" type="exe" - location="evolution-calendar"> + location="@LIBEXECDIR@/evolution-calendar"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 37fd67eb18..b3ba603747 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -33,7 +33,7 @@ SUBDIRS = alarm-notify dialogs help_base = $(datadir)/gnome/help/cal -bin_PROGRAMS = evolution-calendar +libexec_PROGRAMS = evolution-calendar INCLUDES = \ -DG_LOG_DOMAIN=\"calendar-gui\" \ @@ -181,11 +181,12 @@ evolution_calendar_LDADD = \ evolution_calendar_LDFLAGS = -export-dynamic -serversdir = $(libdir)/bonobo/servers -servers_in_files = \ - GNOME_Evolution_Calendar.server.in +server_in_files = GNOME_Evolution_Calendar.server.in.in -servers_DATA = $(servers_in_files:.server.in=.server) +serverdir = $(libdir)/bonobo/servers +server_DATA = $(server_in_files:.server.in.in=.server) +$(server_in_files:.server.in.in=.server.in): $(server_in_files) + sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" $< > $@ @INTLTOOL_SERVER_RULE@ |