From c520728ac008ebab9a095460e68e2d07f689affe Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 15 Jun 2006 10:14:38 +0000 Subject: [PATCH] Must expand also @GETTEXT_PACKAGE@ and @LOCALEDIR@, at least the caldav 2006-06-15 Tor Lillqvist * plugin.mk: Must expand also @GETTEXT_PACKAGE@ and @LOCALEDIR@, at least the caldav plugin has a .eplug.in file that refers to those. (On the other hand, it is questionable whether org-gnome-evolution-caldav.eplug.in needs to specify domain and localedir at all.) svn path=/trunk/; revision=32149 --- ChangeLog | 8 ++++++++ plugin.mk | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bd7afaa166..3dfa620ed9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-06-15 Tor Lillqvist + + * plugin.mk: Must expand also @GETTEXT_PACKAGE@ and @LOCALEDIR@, + at least the caldav plugin has a .eplug.in file that refers to + those. (On the other hand, it is questionable whether + org-gnome-evolution-caldav.eplug.in needs to specify domain and + localedir at all.) + 2006-06-14 Andre Klapper * data/evolution.desktop.in.in: fixing categories, bugzilla entry, diff --git a/plugin.mk b/plugin.mk index 2df8c53d0e..a98aaf63bb 100644 --- a/plugin.mk +++ b/plugin.mk @@ -1,5 +1,8 @@ %.eplug: %.eplug.in - sed -e 's|\@PLUGINDIR\@|$(plugindir)|' -e 's|\@SOEXT\@|$(SOEXT)|' $< > $@ + sed -e 's|\@PLUGINDIR\@|$(plugindir)|' \ + -e 's|\@SOEXT\@|$(SOEXT)|' \ + -e 's|\@GETTEXT_PACKAGE\@|$(GETTEXT_PACKAGE)|' \ + -e 's|\@LOCALEDIR\@|$(localedir)|' $< > $@ %.eplug.in: %.eplug.xml LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@