From: Felipe Contreras Date: Fri, 23 May 2014 10:34:25 +0000 (+1900) Subject: [PATCH 1/3] build: don't add sub Makefiles to the global deps X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e257bb3974232d89a8e7b83544ebc73d10b3ddbe;p=notmuch-archives.git [PATCH 1/3] build: don't add sub Makefiles to the global deps --- diff --git a/2e/d08fe9f175ef7449d7dd0368c0459de871b4f8 b/2e/d08fe9f175ef7449d7dd0368c0459de871b4f8 new file mode 100644 index 000000000..0570b0859 --- /dev/null +++ b/2e/d08fe9f175ef7449d7dd0368c0459de871b4f8 @@ -0,0 +1,86 @@ +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 172B4431FC7 + for ; Fri, 23 May 2014 03:45:52 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -0.799 +X-Spam-Level: +X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 + tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, + FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 wdY2TRj9vaid for ; + Fri, 23 May 2014 03:45:48 -0700 (PDT) +Received: from mail-ob0-f177.google.com (mail-ob0-f177.google.com + [209.85.214.177]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 96C3E431FBF + for ; Fri, 23 May 2014 03:45:48 -0700 (PDT) +Received: by mail-ob0-f177.google.com with SMTP id wp4so5053494obc.22 + for ; Fri, 23 May 2014 03:45:48 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; + h=from:to:cc:subject:date:message-id:in-reply-to:references; + bh=TB6o9ukV8cs34RyC/BM05bSTlDLWqfxaToWM+HL3RCQ=; + b=YvPaK2/v2mFC5G4IGRNhDyMWISBUXtDBwaWtCn47yl24Ri9iDHxqEX9tDP87Mxc/AY + ZHudZMarDWTSNPAPavSDpBhUqahFI6akeyXjRTtm7evg+6Wz1Rotg9Q1SmLbeALIqpuL + 1KDtipnBt8hE6GjMHUBnhUbtig0dafoTpZSsKYPHw1glZ8XfHN7JzejrfCRfy5PPiuNN + T++BWmLDLa6MdGvws/L4v8N1nrY15Ly4tfauJKASwPguBZP7EJ5iRUo2YNsN0yKG3lDJ + qLs1tsHDGBpJ38A4t9+VatM2FYhERK1Ce/n+9hm6dOZ7TRcDYXRGyO/yA9kpXlyPw1ab + teGg== +X-Received: by 10.182.241.9 with SMTP id we9mr1776872obc.81.1400841948123; + Fri, 23 May 2014 03:45:48 -0700 (PDT) +Received: from localhost (189-211-224-40.static.axtel.net. [189.211.224.40]) + by mx.google.com with ESMTPSA id gp4sm4868363obb.17.2014.05.23.03.45.46 + for + (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); + Fri, 23 May 2014 03:45:47 -0700 (PDT) +From: Felipe Contreras +To: notmuch@notmuchmail.org +Subject: [PATCH 1/3] build: don't add sub Makefiles to the global deps +Date: Fri, 23 May 2014 05:34:25 -0500 +Message-Id: <1400841267-12807-2-git-send-email-felipe.contreras@gmail.com> +X-Mailer: git-send-email 1.9.3+fc1~5~gfaddd51 +In-Reply-To: <1400841267-12807-1-git-send-email-felipe.contreras@gmail.com> +References: <1400841267-12807-1-git-send-email-felipe.contreras@gmail.com> +Cc: Ali Polatel +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, 23 May 2014 10:45:52 -0000 + +They don't affect the global build. + +Signed-off-by: Felipe Contreras +--- + Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile b/Makefile +index 4c0e8c6..2d1aee9 100644 +--- a/Makefile ++++ b/Makefile +@@ -20,7 +20,7 @@ include Makefile.config + + # We make all targets depend on the Makefiles themselves. + global_deps = Makefile Makefile.config Makefile.local \ +- $(subdirs:%=%/Makefile) $(subdirs:%=%/Makefile.local) ++ $(subdirs:%=%/Makefile.local) + + Makefile.config: $(srcdir)/configure + ifeq ($(configure_options),) +-- +1.9.3+fc1~5~gfaddd51 +