[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: libvterm: Update arguments style.
From: |
guix-commits |
Subject: |
06/07: gnu: libvterm: Update arguments style. |
Date: |
Wed, 13 Sep 2023 04:23:23 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 79988ab742fdb8b13ab61269ed11c0144593f320
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Wed Sep 6 16:55:40 2023 +0800
gnu: libvterm: Update arguments style.
* gnu/packages/terminals.scm (libvterm)[arguments]: Update arguments style.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/terminals.scm | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 1f72393593..a67ec97859 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -642,17 +642,17 @@ should be thread-safe.")
(base32 "1q16fbznm54p24hqvw8c9v3347apk86ybsxyghsbsa11vm1ny589"))))
(build-system gnu-build-system)
(arguments
- `(#:make-flags
- (list
- ;; FIXME: cross build fails.
- ;; ld: src/.libs/encoding.o: error adding symbols: file in wrong format
- ;; collect2: error: ld returned 1 exit status
- (string-append "CC=" ,(cc-for-target))
- (string-append "PREFIX=" (assoc-ref %outputs "out")))
- #:test-target "test"
- #:phases
- (modify-phases %standard-phases
- (delete 'configure))))
+ (list #:make-flags
+ #~(list
+ ;; FIXME: cross build fails.
+ ;; ld: src/.libs/encoding.o: error adding symbols: file in wrong
format
+ ;; collect2: error: ld returned 1 exit status
+ (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output))
+ #:test-target "test"
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure))))
(native-inputs
(list libtool perl))
(home-page "https://www.leonerd.org.uk/code/libvterm/")
- branch master updated (07d43c66d5 -> c30c9df5e9), guix-commits, 2023/09/13
- 05/07: gnu: libvterm: Update to 0.3.3., guix-commits, 2023/09/13
- 03/07: gnu: python-qtsass: Update to 0.4.0., guix-commits, 2023/09/13
- 01/07: gnu: emilua: Update to 0.4.3., guix-commits, 2023/09/13
- 04/07: gnu: tennix: Update to 1.3.4., guix-commits, 2023/09/13
- 07/07: gnu: yoyo-migrations: Update to 8.2.0., guix-commits, 2023/09/13
- 02/07: gnu: python-libsass: Update to 0.22.0., guix-commits, 2023/09/13
- 06/07: gnu: libvterm: Update arguments style.,
guix-commits <=