mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: rustc: Honor max line length.
* gnu/packages/rust.scm (rustc)[arguments]: patch-tests: Honor max line length.
This commit is contained in:
parent
61a3137bdd
commit
9b7a9580d4
1 changed files with 6 additions and 5 deletions
|
@ -238,11 +238,12 @@ (define-public rustc
|
||||||
#t))
|
#t))
|
||||||
(add-after 'unpack 'patch-tests
|
(add-after 'unpack 'patch-tests
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((bash (assoc-ref inputs "bash")))
|
||||||
(substitute* "src/tools/tidy/src/main.rs"
|
(substitute* "src/tools/tidy/src/main.rs"
|
||||||
(("^.*cargo.*::check.*$") ""))
|
(("^.*cargo.*::check.*$") ""))
|
||||||
(substitute* "src/libstd/process.rs"
|
(substitute* "src/libstd/process.rs"
|
||||||
(("\"/bin/sh\"") (string-append "\"" (assoc-ref inputs "bash") "/bin/sh\"")))
|
(("\"/bin/sh\"") (string-append "\"" bash "/bin/sh\"")))
|
||||||
#t))
|
#t)))
|
||||||
(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"))
|
||||||
|
|
Loading…
Reference in a new issue