From eaf56a1cd82c0a02add74047028374a9c5a9d237 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Tue, 28 Nov 2006 17:16:10 +0100 Subject: [PATCH] remove wrong dist_subdirs line AM_CONDITIONAL already cares for setting DIST_SUBDIRS correctly, so there is no need to specify DIST_SUBDIRS explicitely. The current DIST_SUBDIRS line is actually broken and made "make dist" fail. So removing it. --- src/Makefile.am | 9 +-------- 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 16f1598..f78b13e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,17 +1,10 @@ - - if HAVE_GNOME tracker_gui_dir = tracker-search-tool -else -tracker_gui_dir = endif -if USING_EXTERNAL_SQLITE -sqlite_dir = -else +if !USING_EXTERNAL_SQLITE sqlite_dir = sqlite3 endif SUBDIRS = libstemmer $(sqlite_dir) text-filters trackerd libtracker tracker-extract $(tracker_gui_dir) -DIST_SUBDIRS = libstemmer $(sqlite_dir) text-filters trackerd libtracker tracker-extract $(tracker_gui_dir) -- 1.4.4.1