aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/guix.scm24
1 files changed, 11 insertions, 13 deletions
diff --git a/scripts/guix.scm b/scripts/guix.scm
index 1a3775b..3c89ff1 100644
--- a/scripts/guix.scm
+++ b/scripts/guix.scm
@@ -228,19 +228,17 @@ found in many Samsung smartphones and tablets.")
(define-public libsamsung-ipc-gcc-autotools
(package
- (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)))))
+ (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)))))
(define-public libsamsung-ipc-clang-autotools
(package