diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 18:30:58 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-27 12:46:31 +0200 |
commit | 6ac59f45ff376e5e8fab4f1cd5c64333e53e4e10 (patch) | |
tree | 3eef2406b6d1fb2b033e2e5f244f5990b4fb51da /gnu/packages/samba.scm | |
parent | 55f0e9ccc54a47e708df9e7a21a21e5beb3b1745 (diff) | |
download | guix-6ac59f45ff376e5e8fab4f1cd5c64333e53e4e10.tar.gz |
gnu: samba: Return #t from all phases.
* gnu/packages/samba.scm (samba)[arguments]: Substitute INVOKE for SYSTEM*.
Diffstat (limited to 'gnu/packages/samba.scm')
-rw-r--r-- | gnu/packages/samba.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index 98585905e9..28fd0879e4 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -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" |