GNU bug report logs -
#59093
[PATCH] Add motif and xnedit
Previous Next
Reported by: Andy Tai <atai <at> atai.org>
Date: Mon, 7 Nov 2022 05:14:02 UTC
Severity: normal
Tags: patch
Done: Andy Tai <lichengtai <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
Message #10 received at 59093 <at> debbugs.gnu.org (full text, mbox):
Hi,
On Sun, 06 Nov 2022 at 21:12, Andy Tai <atai <at> atai.org> wrote:
> + (arguments
> + `(#:make-flags (list (string-append "PREFIX="
> + (assoc-ref %outputs "out"))
--^
this
This pattern is now deprecated, if I understand correctly.
https://guix.gnu.org/en/blog/2021/the-big-change/
Instead, something like,
(arguments
(list
#:make-flags #~(list (string-append "PREFIX=" #$output)
(string-append "CC=" #$(cc-for-target)))
#:tests? #f ; no tests
#:phases #~(modify-phases %standard-phases
(delete 'configure)
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "make" "linux" make-flags)))))))
seems more compliant with the “new” style.
> + (inputs (list
> + motif
> + pcre))
Incorrect indentation or just (inputs (list motif pcre))
Cheers,
simon
This bug report was last modified 2 years and 197 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.