Mark H Weaver <m...@netris.org> writes:
> Eric Bavier <ericbav...@gmail.com> writes:
>
>> This is a bit terse, IMHO. Perhaps something like:
>>
>> (let* ((out (assoc-ref outputs "out"))
>> (inc (string-append out "/include")))
>> (begin
>> (mkdir-p inc)
>> (for-each
>> (lambda (f) (copy-file f (string-append inc "/" f)))
>> '("glk.h" "glkstart.h" "gi_blorb.h" "gi_dispa.h" "Make.glkterm"))
>> (mkdir-p lib)
>> (copy-file "libglkterm.a" (string-append out "/lib/libglkterm.a"))))
>
> It's not important, but FYI the 'begin' above is not needed. The 'let*'
> includes an implicit 'begin'.
Thanks! I'll be care next time :)
>
> Mark