gnu: samba: Return #t from all phases.
* gnu/packages/samba.scm (samba)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
55f0e9ccc5
commit
6ac59f45ff
|
@ -178,8 +178,7 @@ anywhere.")
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(libdir (string-append out "/lib")))
|
||||
(zero? (system*
|
||||
"./configure"
|
||||
(invoke "./configure"
|
||||
"--enable-fhs"
|
||||
;; XXX: heimdal not packaged.
|
||||
"--bundled-libraries=com_err"
|
||||
|
@ -188,7 +187,7 @@ anywhere.")
|
|||
;; Install public and private libraries into
|
||||
;; a single directory to avoid RPATH issues.
|
||||
(string-append "--libdir=" libdir)
|
||||
(string-append "--with-privatelibdir=" libdir))))))
|
||||
(string-append "--with-privatelibdir=" libdir)))))
|
||||
(add-before 'install 'disable-etc-samba-directory-creation
|
||||
(lambda _
|
||||
(substitute* "dynconfig/wscript"
|
||||
|
|
Loading…
Reference in New Issue