mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: hop: Return #t from phases.
* gnu/packages/scheme.scm (hop)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
d9a7fab647
commit
24674e6141
1 changed files with 8 additions and 9 deletions
|
@ -314,15 +314,14 @@ (define-public hop
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(zero?
|
(invoke "./configure"
|
||||||
(system* "./configure"
|
(string-append "--prefix=" out)
|
||||||
(string-append "--prefix=" out)
|
(string-append "--blflags="
|
||||||
(string-append "--blflags="
|
;; user flags completely override useful
|
||||||
;; user flags completely override useful
|
;; default flags, so repeat them here.
|
||||||
;; default flags, so repeat them here.
|
"-copt \\$(CPICFLAGS) "
|
||||||
"-copt \\$(CPICFLAGS) "
|
"-L \\$(BUILDLIBDIR) "
|
||||||
"-L \\$(BUILDLIBDIR) "
|
"-ldopt -Wl,-rpath," out "/lib"))))))))
|
||||||
"-ldopt -Wl,-rpath," out "/lib")))))))))
|
|
||||||
(inputs `(("avahi" ,avahi)
|
(inputs `(("avahi" ,avahi)
|
||||||
("bigloo" ,bigloo)
|
("bigloo" ,bigloo)
|
||||||
("libgc" ,libgc)
|
("libgc" ,libgc)
|
||||||
|
|
Loading…
Reference in a new issue