aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-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