diff options
author | Rodney Dawes <dobey@ximian.com> | 2003-02-08 07:05:57 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2003-02-08 07:05:57 +0800 |
commit | 19043324eec8bab62d4cfd69ff78b11335ddebb4 (patch) | |
tree | 6cc8402c2c27368e82e742ef57c96c66f2359b90 /calendar/gui | |
parent | be5952a2641c486964c54ba35bed11b2e3925685 (diff) | |
download | gsoc2013-evolution-19043324eec8bab62d4cfd69ff78b11335ddebb4.tar gsoc2013-evolution-19043324eec8bab62d4cfd69ff78b11335ddebb4.tar.gz gsoc2013-evolution-19043324eec8bab62d4cfd69ff78b11335ddebb4.tar.bz2 gsoc2013-evolution-19043324eec8bab62d4cfd69ff78b11335ddebb4.tar.lz gsoc2013-evolution-19043324eec8bab62d4cfd69ff78b11335ddebb4.tar.xz gsoc2013-evolution-19043324eec8bab62d4cfd69ff78b11335ddebb4.tar.zst gsoc2013-evolution-19043324eec8bab62d4cfd69ff78b11335ddebb4.zip |
remove this file, as it's generated now Add this file to generate the
2003-02-07 Rodney Dawes <dobey@ximian.com>
* gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in:
remove this file, as it's generated now
* gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in:
Add this file to generate the .server.in from, with hardcoded path
* gui/alarm-notify/Makefile.am: Hardcode path in server file
svn path=/trunk/; revision=19851
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in (renamed from calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in) | 2 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/Makefile.am | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in b/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in index 86f5c71493..c6cba0a7f9 100644 --- a/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in +++ b/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in @@ -2,7 +2,7 @@ <oaf_server iid="OAFIID:GNOME_Evolution_Calendar_AlarmNotify_Factory" type="exe" - location="evolution-alarm-notify"> + location="@LIBEXECDIR@/evolution-alarm-notify"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> diff --git a/calendar/gui/alarm-notify/Makefile.am b/calendar/gui/alarm-notify/Makefile.am index 4766db866a..42ec4d847d 100644 --- a/calendar/gui/alarm-notify/Makefile.am +++ b/calendar/gui/alarm-notify/Makefile.am @@ -59,9 +59,11 @@ evolution_alarm_notify_LDADD = \ $(EVOLUTION_CALENDAR_LIBS) server_in_files = \ - GNOME_Evolution_Calendar_AlarmNotify.server.in + GNOME_Evolution_Calendar_AlarmNotify.server.in.in -server_DATA = $(server_in_files:.server.in=.server) +server_DATA = $(server_in_files:.server.in.in=.server) +$(server_in_files:.server.in.in=.server.in): $(server_in_files) + sed -e "s|\@LIBEXECDIR\@|$(privlibexecdir)|" $< > $@ @INTLTOOL_SERVER_RULE@ |