[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] gnu: Add Glulxe.
From: |
宋文武 |
Subject: |
Re: [PATCH] gnu: Add Glulxe. |
Date: |
Wed, 03 Dec 2014 19:27:04 +0800 |
User-agent: |
Notmuch/0.18.1 (http://notmuchmail.org) Emacs/24.4.1 (x86_64-unknown-linux-gnu) |
Mark H Weaver <address@hidden> writes:
> Eric Bavier <address@hidden> 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