From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH] gnu: guile: Add "site-ccache" to the search path. Date: Wed, 29 Jun 2016 11:04:10 +0300 Message-ID: <87por0fmkl.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIATp-0004Vq-Hl for guix-devel@gnu.org; Wed, 29 Jun 2016 04:04:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bIATk-0006Yw-CM for guix-devel@gnu.org; Wed, 29 Jun 2016 04:04:16 -0400 Received: from mail-lf0-x234.google.com ([2a00:1450:4010:c07::234]:34003) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIATk-0006Yr-4I for guix-devel@gnu.org; Wed, 29 Jun 2016 04:04:12 -0400 Received: by mail-lf0-x234.google.com with SMTP id h129so27722951lfh.1 for ; Wed, 29 Jun 2016 01:04:11 -0700 (PDT) Received: from leviafan ([217.107.192.156]) by smtp.gmail.com with ESMTPSA id r76sm437452lfe.1.2016.06.29.01.04.09 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 29 Jun 2016 01:04:09 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Add "site-ccache" since it's a directory where .go files of guile packages should go (for example, 'guile-ssh' installs *.go there). I suppose this patch should go to 'core-updates-next', right? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-guile-Add-site-ccache-to-the-search-path.patch >From 489a54be23753f61fa9c3a318d411eb48fb75bf6 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Wed, 29 Jun 2016 10:51:26 +0300 Subject: [PATCH] gnu: guile: Add "site-ccache" to the search path. * gnu/packages/guile.scm (guile-2.0)[native-search-paths]: Add "lib/guile/2.0/site-ccache" to GUILE_LOAD_COMPILED_PATH. (guile-next): Likewise. --- gnu/packages/guile.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 2d8ca0c..5453e78 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -180,6 +180,7 @@ without requiring the source code to be rewritten.") (search-path-specification (variable "GUILE_LOAD_COMPILED_PATH") (files '("lib/guile/2.0/ccache" + "lib/guile/2.0/site-ccache" "share/guile/site/2.0"))))) (synopsis "Scheme implementation intended especially for extensions") @@ -223,6 +224,7 @@ without requiring the source code to be rewritten.") (search-path-specification (variable "GUILE_LOAD_COMPILED_PATH") (files '("lib/guile/2.2/ccache" + "lib/guile/2.2/site-ccache" "share/guile/site/2.2"))))))) (define-public guile-for-guile-emacs -- 2.8.3 --=-=-=--