GNU bug report logs -
#27275
[PATCH 0/2] Add (guix git) module.
Previous Next
Reported by: Mathieu Othacehe <m.othacehe <at> gmail.com>
Date: Wed, 7 Jun 2017 12:05:02 UTC
Severity: normal
Tags: patch
Done: Mathieu Othacehe <m.othacehe <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Hi Ludo,
Thanks for the fast review :)
>> (set! %load-compiled-path
>> (cons* json
>> + (string-append #$guile-git "/lib/guile/"
>> + #$(effective-version)-
>> + "/site-ccache")
>
> ‘guile-git’ can be #f so you have to account for that.
Just on question about that. The easier I come up with is something like
:
--8<---------------cut here---------------start------------->8---
(set! %load-path
(append
`(,@(if
(and #$guile-git #$guile-bytestructures)
(list
(string-append #$guile-git "/share/guile/site/"
#$(effective-version))
(string-append #$guile-bytestructures "/share/guile/site/"
#$(effective-version)))
'()))
(cons* json
(string-append #$guile-ssh "/share/guile/site/"
#$(effective-version))
%load-path)))
--8<---------------cut here---------------end--------------->8---
Any idea on how to write that smoothly ?
Thanks,
Mathieu
This bug report was last modified 8 years and 69 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.