From patchwork Fri Oct 9 09:12:28 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Ludovic_Court=C3=A8s?= X-Patchwork-Id: 24518 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id D4AFF27BBE9; Fri, 9 Oct 2020 10:14:10 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 8D3C127BBE8 for ; Fri, 9 Oct 2020 10:14:10 +0100 (BST) Received: from localhost ([::1]:35938 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kQoTZ-0007hB-OD for patchwork@mira.cbaines.net; Fri, 09 Oct 2020 05:14:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55828) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kQoTT-0007gr-Rv for guix-patches@gnu.org; Fri, 09 Oct 2020 05:14:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:50803) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kQoTT-0001nU-Io for guix-patches@gnu.org; Fri, 09 Oct 2020 05:14:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kQoTT-00048U-E2 for guix-patches@gnu.org; Fri, 09 Oct 2020 05:14:03 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#43679] [PATCH v2 2/5] gnu: clang-toolchain: Add 'GUIX_LOCPATH' to the search paths. Resent-From: Ludovic =?utf-8?q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 09 Oct 2020 09:14:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43679 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 43679@debbugs.gnu.org Cc: Ludovic =?utf-8?q?Court=C3=A8s?= Received: via spool by 43679-submit@debbugs.gnu.org id=B43679.160223478715789 (code B ref 43679); Fri, 09 Oct 2020 09:14:03 +0000 Received: (at 43679) by debbugs.gnu.org; 9 Oct 2020 09:13:07 +0000 Received: from localhost ([127.0.0.1]:34108 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kQoSZ-00046a-Eo for submit@debbugs.gnu.org; Fri, 09 Oct 2020 05:13:07 -0400 Received: from eggs.gnu.org ([209.51.188.92]:48816) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kQoSW-00045U-CO for 43679@debbugs.gnu.org; Fri, 09 Oct 2020 05:13:04 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:57150) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kQoSQ-0001jr-DC; Fri, 09 Oct 2020 05:12:58 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=56284 helo=gnu.org) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kQoSP-0001o4-JY; Fri, 09 Oct 2020 05:12:57 -0400 From: Ludovic =?utf-8?q?Court=C3=A8s?= Date: Fri, 9 Oct 2020 11:12:28 +0200 Message-Id: <20201009091231.26287-3-ludo@gnu.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201009091231.26287-1-ludo@gnu.org> References: <87mu17yzfn.fsf@inria.fr> <20201009091231.26287-1-ludo@gnu.org> MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches From: Ludovic Courtès * gnu/packages/llvm.scm (make-clang-toolchain)[native-search-paths]: Add 'GUIX_LOCPATH'. --- gnu/packages/llvm.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 15078a1168..4b42c4921a 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -484,7 +484,11 @@ code analysis tools.") "libc-static"))) #t)))) - (native-search-paths (package-native-search-paths clang)) + (native-search-paths + (append (package-native-search-paths clang) + (list (search-path-specification ;copied from glibc + (variable "GUIX_LOCPATH") + (files '("lib/locale")))))) (search-paths (package-search-paths clang)) (license (package-license clang))