summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorZheng Junjie <z572@z572.online>2025-06-15 22:52:16 +0800
committerAndreas Enge <andreas@enge.fr>2025-07-18 20:17:35 +0200
commit884b6e96156c46fe821cd0c7d54c679085e9f129 (patch)
tree55817f1fe75087dcd17c815152cef3af3c7b5478 /gnu
parenta23d7877ea0e5e1f76953361ab984e692f8ac68b (diff)
gnu: libarchive: Explicitly disable openssl.
* gnu/packages/backup.scm (libarchive)[arguments]<#:configure-flags>: Add --without-openssl. Change-Id: Id64849ca319fc191998175ffb3ceba07c1bff744
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/backup.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index bed0012a5a4..8fc9e741bea 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -287,7 +287,12 @@ backups (called chunks) to allow easy burning to CD/DVD.")
`(,zstd "lib")))
(arguments
(list
- #:configure-flags #~'("--disable-static")
+ #:configure-flags
+ #~'("--disable-static"
+ ;; Because of the circular dependency, we cannot use openssl here.
+ ;; Explicitly disable openssl to avoid unnecessary dependencies in the
+ ;; pc file.
+ "--without-openssl")
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'patch-pwd