[totem] Fix the totem-plugin file creating rule



commit 2c125a4ac8b939705db9cb482ab2853dece82efa
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sun Sep 5 15:25:45 2010 +0100

    Fix the totem-plugin file creating rule
    
    It was calling intltool-merge twice, once with invalid arguments, but the
    error was getting hidden as nothing depended on its success value.

 src/plugins/Makefile.plugins |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/plugins/Makefile.plugins b/src/plugins/Makefile.plugins
index f8d98cf..a721797 100644
--- a/src/plugins/Makefile.plugins
+++ b/src/plugins/Makefile.plugins
@@ -1,4 +1,5 @@
-%.totem-plugin: %.totem-plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
+%.totem-plugin: %.totem-plugin.in
+	$(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
 
 plugin_DATA = $(plugin_in_files:.totem-plugin.in=.totem-plugin)
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]