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
12 lines
326 B
Makefile
12 lines
326 B
Makefile
%.eplug: %.eplug.in
|
|
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 $< $@
|
|
|
|
%.error: %.error.xml
|
|
LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@
|