2005-05-06 Not Zed <NotZed@Ximian.com> * plugin.mk: changed .eplug rule to also convert i18n tags if it ends in xml. Also convert .error.xml into .error converting i18n tags. svn path=/trunk/; revision=29303
10 lines
250 B
Makefile
10 lines
250 B
Makefile
%.eplug: %.eplug.in
|
|
sed -e 's|\@PLUGINDIR\@|$(plugindir)|' $< > $@
|
|
|
|
%.eplug: %.eplug.xml
|
|
LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< - | \
|
|
sed -e 's|\@PLUGINDIR\@|$(plugindir)|' > $@
|
|
|
|
%.error: %.error.xml
|
|
LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@
|