diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2005-05-11 15:22:53 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-05-11 15:22:53 +0800 |
commit | ce5a2a93db68558e34f360c71e7e770699bb25c7 (patch) | |
tree | c2a9b6d2f5e2c10e801bb793ee5dd916a7a6b522 /plugin.mk | |
parent | d3fcb61bcb3da1e3baf9b579c7c98bd83a5ea51e (diff) | |
download | gsoc2013-evolution-ce5a2a93db68558e34f360c71e7e770699bb25c7.tar.gz gsoc2013-evolution-ce5a2a93db68558e34f360c71e7e770699bb25c7.tar.zst gsoc2013-evolution-ce5a2a93db68558e34f360c71e7e770699bb25c7.zip |
fixed the rule for .eplug.xml to avoid stupid intltool-merge diagnostics going into the file
svn path=/trunk/; revision=29322
Diffstat (limited to 'plugin.mk')
-rw-r--r-- | plugin.mk | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,9 +1,8 @@ %.eplug: %.eplug.in sed -e 's|\@PLUGINDIR\@|$(plugindir)|' $< > $@ -%.eplug: %.eplug.xml - LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< - | \ - sed -e 's|\@PLUGINDIR\@|$(plugindir)|' > $@ +%.eplug.in: %.eplug.xml + LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@ %.error: %.error.xml LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@ |