gnu: samba: Return #t from all phases.

* gnu/packages/samba.scm (samba)[arguments]: Substitute INVOKE for
SYSTEM*.
This commit is contained in:
Tobias Geerinckx-Rice 2018-06-26 18:30:58 +02:00
parent 55f0e9ccc5
commit 6ac59f45ff
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 2 additions and 3 deletions

View File

@ -178,8 +178,7 @@ anywhere.")
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
(libdir (string-append out "/lib"))) (libdir (string-append out "/lib")))
(zero? (system* (invoke "./configure"
"./configure"
"--enable-fhs" "--enable-fhs"
;; XXX: heimdal not packaged. ;; XXX: heimdal not packaged.
"--bundled-libraries=com_err" "--bundled-libraries=com_err"
@ -188,7 +187,7 @@ anywhere.")
;; Install public and private libraries into ;; Install public and private libraries into
;; a single directory to avoid RPATH issues. ;; a single directory to avoid RPATH issues.
(string-append "--libdir=" libdir) (string-append "--libdir=" libdir)
(string-append "--with-privatelibdir=" libdir)))))) (string-append "--with-privatelibdir=" libdir)))))
(add-before 'install 'disable-etc-samba-directory-creation (add-before 'install 'disable-etc-samba-directory-creation
(lambda _ (lambda _
(substitute* "dynconfig/wscript" (substitute* "dynconfig/wscript"