Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 69B0F431FD0 for ; Fri, 24 Jun 2011 03:54:01 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -2.3 X-Spam-Level: X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sClHrWw8-AZr for ; Fri, 24 Jun 2011 03:54:00 -0700 (PDT) Received: from tempo.its.unb.ca (tempo.its.unb.ca [131.202.1.21]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id BF8B4431FB6 for ; Fri, 24 Jun 2011 03:54:00 -0700 (PDT) Received: from zancas.localnet (fctnnbsc30w-142167176081.pppoe-dynamic.High-Speed.nb.bellaliant.net [142.167.176.81]) (authenticated bits=0) by tempo.its.unb.ca (8.13.8/8.13.8) with ESMTP id p5OArt0b008957 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Fri, 24 Jun 2011 07:53:56 -0300 Received: from bremner by zancas.localnet with local (Exim 4.76) (envelope-from ) id 1Qa41L-0000S7-2W; Fri, 24 Jun 2011 07:53:55 -0300 From: david@tethera.net To: notmuch@notmuchmail.org Subject: [PATCH] libnotmuch: fix typo in CLEAN setting, add file Date: Fri, 24 Jun 2011 07:53:44 -0300 Message-Id: <1308912824-1709-1-git-send-email-david@tethera.net> X-Mailer: git-send-email 1.7.5.3 Cc: David Bremner X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2011 10:54:01 -0000 From: David Bremner - c0961e6 introduced a missing slash and - cdf1c70a created a file and neglected to add it to clean The former seems to have been harmless, so maybe someone (Carl?) can check if $(dir)/$(LIBNAME) really needs to be removed? --- lib/Makefile.local | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/lib/Makefile.local b/lib/Makefile.local index a33ba34..acf257a 100644 --- a/lib/Makefile.local +++ b/lib/Makefile.local @@ -103,4 +103,6 @@ install-$(dir): $(dir)/$(LIBNAME) $(LIBRARY_INSTALL_POST_COMMAND) SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs) -CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/$(SONAME) $(dir)/$(LINKER_NAME) $(dir)$(LIBNAME) libnotmuch.a notmuch.aux notmuch.sym +CLEAN += $(libnotmuch_modules) $(dir)/$(SONAME) $(dir)/$(LINKER_NAME) +CLEAN += $(dir)/$(LIBNAME) libnotmuch.a notmuch.aux notmuch.sym +CLEAN += $(dir)/notmuch.h.gch -- 1.7.5.3