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:08 +0100
commit0521387112a004eda96d167143a0ebaa8e36afcf (patch)
treea8a5a8737f815b5582ff9834fcb7d808142f0fb1
parent94d0dfdeb5d7799f9ef3cba45634011858dc53d0 (diff)
downloadhardware_replicant_libsamsung-ipc-0521387112a004eda96d167143a0ebaa8e36afcf.tar.gz
hardware_replicant_libsamsung-ipc-0521387112a004eda96d167143a0ebaa8e36afcf.tar.bz2
hardware_replicant_libsamsung-ipc-0521387112a004eda96d167143a0ebaa8e36afcf.zip
scripts: guix.scm: libsamsung-ipc-clang-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.scm18
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/guix.scm b/scripts/guix.scm
index d051043..efe72e8 100644
--- a/scripts/guix.scm
+++ b/scripts/guix.scm
@@ -235,15 +235,15 @@ found in many Samsung smartphones and tablets.")
python-sh
clang))
(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
- ,%clang-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
+ #$%clang-strict-cflags)))))
(define-public libsamsung-ipc-clang-android
(package