diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-28 17:56:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-04-15 10:19:47 +0200 |
commit | 1590e8a1dda793a16d9c70a666b0a8b5d41a94f5 (patch) | |
tree | c7210ae0becf363218ed8d9f4eb13076c789b8e1 /guix/download.scm | |
parent | 691cb22b1b4be122fc67d51c890e9fbf1643a182 (diff) | |
download | gnu-guix-1590e8a1dda793a16d9c70a666b0a8b5d41a94f5.tar gnu-guix-1590e8a1dda793a16d9c70a666b0a8b5d41a94f5.tar.gz |
packages: Refer to the native tools when handling sources and downloads.
* guix/packages.scm (patch-and-repack)[build]: Change most #$ to #+.
* guix/cvs-download.scm (cvs-fetch)[build]: Likewise.
* guix/download.scm (url-fetch)[builder]: Likewise.
* guix/git-download.scm (git-fetch)[build]: Likewise.
* guix/svn-download.scm (svn-fetch)[build]: Likewise.
Diffstat (limited to 'guix/download.scm')
-rw-r--r-- | guix/download.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/download.scm b/guix/download.scm index d87d02e2af..3e4024fe1f 100644 --- a/guix/download.scm +++ b/guix/download.scm @@ -241,12 +241,12 @@ in the store." (define builder #~(begin - #$(if need-gnutls? + #+(if need-gnutls? ;; Add GnuTLS to the inputs and to the load path. #~(eval-when (load expand eval) (set! %load-path - (cons (string-append #$(gnutls-package) + (cons (string-append #+(gnutls-package) "/share/guile/site/" (effective-version)) %load-path))) |