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:04 +0100
commit757f85e58f35fa24ef403a1dd3a35a655ed0881a (patch)
tree008ecbec3379c206f67b533c9dc62d106f0f35d3
parentc87e5fb045c802582df9896467dae58aa48b57a0 (diff)
downloadhardware_replicant_libsamsung-ipc-757f85e58f35fa24ef403a1dd3a35a655ed0881a.tar.gz
hardware_replicant_libsamsung-ipc-757f85e58f35fa24ef403a1dd3a35a655ed0881a.tar.bz2
hardware_replicant_libsamsung-ipc-757f85e58f35fa24ef403a1dd3a35a655ed0881a.zip
scripts: guix.scm: sync libsamsung-ipc-gcc-autotools with guix style
The guix style command reformats a package or a file to use the code style used by Guix. This commits sync the libsamsung-ipc-gcc-autotools package with the output produced by guix style. This commit should contain no functional changes. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-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