[tracker] Remove duplicate EXTRA_DIST / CLEANFILES



commit 7ded9a2c02462946c84ba95e4ab7685fa847dac2
Author: Michael Biebl <biebl debian org>
Date:   Fri Sep 25 02:28:32 2009 +0200

    Remove duplicate EXTRA_DIST / CLEANFILES
    
    EXTRA_DIST and CLEANFILES were specified twice, the second overriding
    the first. As a result $(desktop_in_files) was not added to the dist
    tarball.

 src/plugins/evolution/Makefile.am |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/plugins/evolution/Makefile.am b/src/plugins/evolution/Makefile.am
index 50b08e4..3e2b168 100644
--- a/src/plugins/evolution/Makefile.am
+++ b/src/plugins/evolution/Makefile.am
@@ -52,9 +52,6 @@ tracker_miners_DATA = tracker-miner-emails.desktop
 
 @INTLTOOL_DESKTOP_RULE@
 
-EXTRA_DIST = $(desktop_in_files)
-CLEANFILES = $(tracker_miners_DATA)
-
 
 %-glue.h: %.xml
 	$(DBUSBINDINGTOOL) --mode=glib-server --output=$@ --prefix=$(subst -,_,$*) $^
@@ -64,7 +61,10 @@ BUILT_SOURCES = 							\
 
 CLEANFILES = 								\
 	$(BUILT_SOURCES) 						\
+	$(tracker_miners_DATA)						\
 	org-freedesktop-Tracker-evolution-plugin.eplug
 
-EXTRA_DIST = $(service_DATA)						\
+EXTRA_DIST =								\
+	$(service_DATA)							\
+	$(desktop_in_files)						\
 	org-freedesktop-Tracker-evolution-plugin.eplug.xml



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