From patchwork Thu Jan 25 02:19:35 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 865654 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-89477-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="t73jc+5V"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3zRm2X339Dz9t3p for ; Thu, 25 Jan 2018 13:19:48 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=jTMk6ralhMTeVmVa9CRGfmdaf6AXOrBiSMWVqNjWgUrvMVpcTaycQ CeEDNN+mV0+reZnF7dTukLlqxgNjIyh11GdNClbltWys18c74SAn04ujn9c/z8xN 0jH58dTaF+qAmE+KSyu7aASllYts75g84Tn8Ikxd20SOy+j/QvpT8Q= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=hl/8U5JTtmXwEciPloW1Iz9Bzm0=; b=t73jc+5VXFNFPL6vJMJkzE8xCI3D XK8ZEJbYA/hyVzyo1iAPmsowZn0gjO8UQkC1YuC5dr3bKqjAiqHRR23rNSwba086 /ZCdGJZ3UF4vtjezBVYmFKxiI4EwSnP9kpTnxjwU1wHWxXgGeiYrdA/k6ZuDrL4s KK9r/na7pFYqrD0= Received: (qmail 66037 invoked by alias); 25 Jan 2018 02:19:42 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 65690 invoked by uid 89); 25 Jan 2018 02:19:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_NEUTRAL, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault Subject: [hurd,commited] build-many-glibcs.py: Fix hurd-vcs checkout Date: Thu, 25 Jan 2018 03:19:35 +0100 Message-Id: <20180125021935.30901-1-samuel.thibault@ens-lyon.org> * scripts/build-many-glibcs.py (checkout_vcs): Run autoconf. --- ChangeLog | 3 ++- scripts/build-many-glibcs.py | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6bc5717fcc..70f7d61aad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2018-01-25 Samuel Thibault - * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL. + * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository + URL, and run autoconf. 2018-01-24 Joseph Myers diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index aeeccb32a4..113352c089 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -789,7 +789,10 @@ class Context(object): elif component == 'hurd': git_url = 'git://git.savannah.gnu.org/hurd/hurd.git' git_branch = 'master' - return self.git_checkout(component, git_url, git_branch, update) + r = self.git_checkout(component, git_url, git_branch, update) + subprocess.run(['autoconf'], + cwd=self.component_srcdir(component), check=True) + return r else: print('error: component %s coming from VCS' % component) exit(1)