From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id C196D431E64 for ; Sat, 3 May 2014 23:12:03 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] 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 jFMeRQpXKTMY for ; Sat, 3 May 2014 23:11:59 -0700 (PDT) Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net [87.98.215.224]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id E6124431FDB for ; Sat, 3 May 2014 23:11:58 -0700 (PDT) Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim 4.72) (envelope-from ) id 1Wgpds-0005h2-G1; Sun, 04 May 2014 06:11:16 +0000 Received: (nullmailer pid 25072 invoked by uid 1000); Sun, 04 May 2014 06:10:57 -0000 From: David Bremner To: notmuch@notmuchmail.org Subject: [PATCH 1/3] build: don't overwrite DISTCLEAN in performance-test Date: Sun, 4 May 2014 15:10:47 +0900 Message-Id: <1399183849-25032-1-git-send-email-david@tethera.net> X-Mailer: git-send-email 1.9.2 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: Sun, 04 May 2014 06:12:03 -0000 This might have worked once for some fixed order of including makefiles, but it is clearly wrong now. --- performance-test/Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance-test/Makefile.local b/performance-test/Makefile.local index d97e56d..cbea2d3 100644 --- a/performance-test/Makefile.local +++ b/performance-test/Makefile.local @@ -40,4 +40,4 @@ download-corpus: wget -O ${TXZFILE} ${DEFAULT_URL} CLEAN := $(CLEAN) $(dir)/tmp.* $(dir)/log.* -DISTCLEAN := $(dir)/corpus $(dir)/notmuch.cache.* +DISTCLEAN := $(DISTCLEAN) $(dir)/corpus $(dir)/notmuch.cache.* -- 1.9.2