nckx pushed a commit to branch master
in repository guix.
commit 15e5d22fcbac028b8312d2cf3cd20844d9ee80e3
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Mon Oct 4 02:34:18 2021 +0200
gnu: cifs-utils: Fix support for dropping capabilities.
* gnu/packages/samba.scm (cifs-utils)[arguments]: Add a new
'trigger-bootstrap phase.
---
gnu/packages/samba.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 6f5f0db..1a9e765 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -93,6 +93,11 @@
(list "--enable-man")
#:phases
(modify-phases %standard-phases
+ (add-before 'bootstrap 'trigger-bootstrap
+ ;; The shipped configure script is buggy, e.g., it contains a
+ ;; unexpanded literal ‘LIBCAP_NG_PATH’ line).
+ (lambda _
+ (delete-file "configure")))
(add-before 'configure 'set-root-sbin
(lambda* (#:key outputs #:allow-other-keys)
;; Don't try to install into "/sbin".