aboutsummaryrefslogtreecommitdiffstats
path: root/plugin.mk
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2006-06-15 18:14:38 +0800
committerTor Lillqvist <tml@src.gnome.org>2006-06-15 18:14:38 +0800
commitc520728ac008ebab9a095460e68e2d07f689affe (patch)
treeb0193673e1c4e9be3005ab8f239e88713f9538a4 /plugin.mk
parentd14fff52f92786d96ae9619d8f5df054812db796 (diff)
downloadgsoc2013-evolution-c520728ac008ebab9a095460e68e2d07f689affe.tar
gsoc2013-evolution-c520728ac008ebab9a095460e68e2d07f689affe.tar.gz
gsoc2013-evolution-c520728ac008ebab9a095460e68e2d07f689affe.tar.bz2
gsoc2013-evolution-c520728ac008ebab9a095460e68e2d07f689affe.tar.lz
gsoc2013-evolution-c520728ac008ebab9a095460e68e2d07f689affe.tar.xz
gsoc2013-evolution-c520728ac008ebab9a095460e68e2d07f689affe.tar.zst
gsoc2013-evolution-c520728ac008ebab9a095460e68e2d07f689affe.zip
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
Diffstat (limited to 'plugin.mk')
-rw-r--r--plugin.mk5
1 files changed, 4 insertions, 1 deletions
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 $< $@