blob: 7f3528a118b17128a65bad35a103d48da2781c93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
%.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/notthere $< $@
%.error: %.error.xml
LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp/notthere $< $@
|