mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: rustc: Simplify configure phase.
* gnu/packages/rust.scm (rustc): Simplify configure phase.
This commit is contained in:
parent
120349bfb4
commit
42c127e876
1 changed files with 2 additions and 5 deletions
|
@ -224,12 +224,9 @@ (define-public rustc
|
|||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-configure
|
||||
(lambda _
|
||||
;; Detect target CPU correctly.
|
||||
(substitute* "configure"
|
||||
(("/usr/bin/env") (which "env")))
|
||||
;; Avoid curl as a build dependency.
|
||||
(substitute* "configure"
|
||||
(("probe_need CFG_CURL curl") ""))
|
||||
(("/usr/bin/env") (which "env")) ; Detect target CPU correctly.
|
||||
(("probe_need CFG_CURL curl") "")) ; Avoid curl as a build dependency.
|
||||
#t))
|
||||
(add-after 'unpack 'set-env
|
||||
(lambda _
|
||||
|
|
Loading…
Reference in a new issue