aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-08-25 15:36:18 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-08-25 15:38:13 +0200
commitdc81e665df27289960c06dee4f33f43a4f17fdaa (patch)
treed86f81f1b76ae77b8af730a1f2bacb5a6ae3e6e6
parent89af097113d7d95bebf7bf9b4f0b9736c614c0d9 (diff)
downloadhardware_replicant_libsamsung-ipc-dc81e665df27289960c06dee4f33f43a4f17fdaa.tar.gz
hardware_replicant_libsamsung-ipc-dc81e665df27289960c06dee4f33f43a4f17fdaa.tar.bz2
hardware_replicant_libsamsung-ipc-dc81e665df27289960c06dee4f33f43a4f17fdaa.zip
scripts: guix.scm: fix whitespace issues
Tabs were added by the commit 43983cdb532303224be896ec37e67fa515d87e3e ("Android.mk: fix missing files and build local-modules in guix.scm"). Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--scripts/guix.scm36
1 files changed, 18 insertions, 18 deletions
diff --git a/scripts/guix.scm b/scripts/guix.scm
index 8d1c811..7c23fea 100644
--- a/scripts/guix.scm
+++ b/scripts/guix.scm
@@ -151,24 +151,24 @@
(append
make-flags
'("LDFLAGS=-lssl -lcrypto"
- "LOCAL_MODULE=libsamsung-ipc"
- "SO=libsamsung-ipc.so")))
+ "LOCAL_MODULE=libsamsung-ipc"
+ "SO=libsamsung-ipc.so")))
(map-in-order
(lambda (local-module)
- ((assoc-ref %standard-phases target)
- #:inputs inputs
- #:outputs outputs
- ;; TODO: use pkg-config for -lssl -lcrypto
- #:make-flags
- (append
- make-flags
- (list
- (string-append
- "LDFLAGS=-Wl,-rpath="
- #$output
- "/lib -lssl -lcrypto -L .")
- (string-append "LOCAL_MODULE="
- local-module)))))
+ ((assoc-ref %standard-phases target)
+ #:inputs inputs
+ #:outputs outputs
+ ;; TODO: use pkg-config for -lssl -lcrypto
+ #:make-flags
+ (append
+ make-flags
+ (list
+ (string-append
+ "LDFLAGS=-Wl,-rpath="
+ #$output
+ "/lib -lssl -lcrypto -L .")
+ (string-append "LOCAL_MODULE="
+ local-module)))))
android-local-modules))))
(define android-phases
@@ -176,9 +176,9 @@
%standard-phases
(delete 'bootstrap)
(replace 'build
- (#$android-make 'build '#$android-local-modules-list))
+ (#$android-make 'build '#$android-local-modules-list))
(replace 'install
- (#$android-make 'install '#$android-local-modules-list))))
+ (#$android-make 'install '#$android-local-modules-list))))
(define-public libsamsung-ipc
(package