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)
|
(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"
|
||||||
|
|
Loading…
Reference in New Issue