Must expand also @GETTEXT_PACKAGE@ and @LOCALEDIR@, at least the caldav

2006-06-15  Tor Lillqvist  <tml@novell.com>

	* 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
This commit is contained in:
Tor Lillqvist
2006-06-15 10:14:38 +00:00
committed by Tor Lillqvist
parent d14fff52f9
commit c520728ac0
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2006-06-15 Tor Lillqvist <tml@novell.com>
* 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 <a9016009@gmx.de>
* data/evolution.desktop.in.in: fixing categories, bugzilla entry,

View File

@ -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 $< $@