aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2023-02-14 02:23:30 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2023-02-14 04:26:09 +0100
commitb9eaadcf9792050ec83097439479dd0f8dd69d6f (patch)
treeacd0cdb38819b624e77e969590867ce4f1ef672a
parent0521387112a004eda96d167143a0ebaa8e36afcf (diff)
downloadhardware_replicant_libsamsung-ipc-b9eaadcf9792050ec83097439479dd0f8dd69d6f.tar.gz
hardware_replicant_libsamsung-ipc-b9eaadcf9792050ec83097439479dd0f8dd69d6f.tar.bz2
hardware_replicant_libsamsung-ipc-b9eaadcf9792050ec83097439479dd0f8dd69d6f.zip
scripts: guix.scm: libsamsung-ipc-gcc-autotools: use new arguments style
This commit should contain no functional changes. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--scripts/guix.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/guix.scm b/scripts/guix.scm
index efe72e8..e5b8785 100644
--- a/scripts/guix.scm
+++ b/scripts/guix.scm
@@ -213,14 +213,14 @@ found in many Samsung smartphones and tablets.")
(inherit libsamsung-ipc)
(name "libsamsung-ipc-gcc-autotools")
(arguments
- `(#:phases (modify-phases %standard-phases
- (add-before 'build 'patch-python
- (lambda _
- (substitute* (find-files "." ".*\\.py$")
- (("/usr/bin/env python")
- (which "python3"))) #t)))
- #:configure-flags (list "--enable-debug")
- #:make-flags (list ,%common-strict-cflags)))))
+ (list #:phases #~(modify-phases %standard-phases
+ (add-before 'build 'patch-python
+ (lambda _
+ (substitute* (find-files "." ".*\\.py$")
+ (("/usr/bin/env python")
+ (which "python3"))) #t)))
+ #:configure-flags #~(list "--enable-debug")
+ #:make-flags #~(list #$%common-strict-cflags)))))
(define-public libsamsung-ipc-clang-autotools
(package