aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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