From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 9ABC96DE0F60 for ; Sat, 23 Mar 2019 05:35:55 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -1.408 X-Spam-Level: X-Spam-Status: No, score=-1.408 tagged_above=-999 required=5 tests=[AWL=-1.207, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_PASS=-0.001] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MLyhmN413-Ct for ; Sat, 23 Mar 2019 05:35:53 -0700 (PDT) Received: from che.mayfirst.org (che.mayfirst.org [162.247.75.118]) by arlo.cworth.org (Postfix) with ESMTPS id B6E416DE1006 for ; Sat, 23 Mar 2019 05:35:53 -0700 (PDT) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/simple; d=fifthhorseman.net; i=@fifthhorseman.net; q=dns/txt; s=2019; t=1553344551; h=from : to : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : from; bh=62M4uRl0V4sRr/rgw9QlkZMB6+fhpm/2eBUKFkLkcVs=; b=UAKAKb4asu7vhgzSZ3TV1uzRsogs5AbInm43uA+9CdSFboqCo5TgmnQ/ BEWTdinkBKhNP0R6Ii7E14xlaJX3Bw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fifthhorseman.net; i=@fifthhorseman.net; q=dns/txt; s=2019rsa; t=1553344551; h=from : to : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : from; bh=62M4uRl0V4sRr/rgw9QlkZMB6+fhpm/2eBUKFkLkcVs=; b=NaY2kwj5kdNnkL0CMUfVdP9sJbyvvDR2EvyjQbZncFUgyK2srChCRHnq JN9oEJPqPJ0MW1WxVnLpnogb4zyI+oYtPq6+s5cBrMI8dtoL0Tje8gdgnl KMwW89pzLs0tz8y0rJx69VpQgQv83Lq5g7al1yiYKIrWXrpnB/KErkS2w7 jtV7dGF6lZpASktgGIOn1RjLbanOOX0O0fzPP56dtdRbkkZThT52x8KvQ3 zwfygzHW9I8/Tj+EW+3uY0BDnd2b0HsQ8S6qeAUQUfrcvkrpTHVe5gS4tK R9DPFv7+1akfV5l00Y7F1TjXCsRTK/rHVoEZZKYvR5k2SKCd63mYEA== Received: from fifthhorseman.net (unknown [IPv6:2001:67c:370:128:b815:dfa4:66ed:5b6f]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by che.mayfirst.org (Postfix) with ESMTPSA id DE03FF99E for ; Sat, 23 Mar 2019 08:35:50 -0400 (EDT) Received: by fifthhorseman.net (Postfix, from userid 1000) id 22ED8206B9; Sat, 23 Mar 2019 08:35:44 -0400 (EDT) From: Daniel Kahn Gillmor To: Notmuch Mail Subject: [PATCH v2 1/3] build: ensure that SHA256_FILE is built Date: Sat, 23 Mar 2019 13:35:42 +0100 Message-Id: <20190323123544.6264-1-dkg@fifthhorseman.net> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190323112118.4022-1-dkg@fifthhorseman.net> References: <20190323112118.4022-1-dkg@fifthhorseman.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.29 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: Sat, 23 Mar 2019 12:35:55 -0000 The SHA256_FILE used to be built automatically because of the makefile dependencies. Since b8a8dbed91d16299a8768646fb6f18181f31ec40, it isn't getting made properly, so the release target would fail. Signed-off-by: Daniel Kahn Gillmor --- Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.local b/Makefile.local index 01ba49cc..8535844a 100644 --- a/Makefile.local +++ b/Makefile.local @@ -68,7 +68,7 @@ release: verify-source-tree-and-version $(MAKE) VERSION=$(VERSION) clean $(MAKE) VERSION=$(VERSION) test git tag -s -m "$(PACKAGE) $(VERSION) release" $(UPSTREAM_TAG) - $(MAKE) VERSION=$(VERSION) $(GPG_FILE) + $(MAKE) VERSION=$(VERSION) $(SHA256_FILE) $(GPG_FILE) ln -sf $(TAR_FILE) $(DEB_TAR_FILE) pristine-tar commit $(DEB_TAR_FILE) $(UPSTREAM_TAG) git tag -s -m "$(PACKAGE) Debian $(VERSION)-1 upload (same as $(VERSION))" $(DEB_TAG) -- 2.20.1