download: Append (effective-version) to '%load-path' for GnuTLS.

* guix/download.scm (url-fetch)[builder]: Append (effective-version) to
  %load-path, as discussed at
  <http://lists.gnu.org/archive/html/guix-devel/2014-10/msg00398.html>.
  This fixes a regression introduced in b94ae0b.
This commit is contained in:
Ludovic Courtès 2014-10-30 15:46:36 +01:00
parent b9113adf45
commit e0ea3f8a0d

@ -234,7 +234,8 @@ must be a list of symbol/URL-list pairs."
#~(eval-when (load expand eval)
(set! %load-path
(cons (string-append #$(gnutls-package)
"/share/guile/site")
"/share/guile/site/"
(effective-version))
%load-path)))
#~#t)