mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: commencement: Add binutils-mesboot1.
* gnu/packages/commencement.scm (binutils-mesboot1): New variable.
This commit is contained in:
parent
fa638c18b6
commit
e7c7326873
1 changed files with 26 additions and 0 deletions
|
@ -1731,6 +1731,32 @@ (define grep-mesboot
|
|||
(symlink "grep" (string-append bin "/fgrep"))
|
||||
#t))))))))
|
||||
|
||||
(define binutils-mesboot1
|
||||
(package
|
||||
(inherit binutils-mesboot0)
|
||||
(name "binutils-mesboot1")
|
||||
(native-inputs (%boot-mesboot0-inputs))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments binutils-mesboot0)
|
||||
((#:configure-flags configure-flags)
|
||||
'(let ((out (assoc-ref %outputs "out")))
|
||||
`("--disable-nls"
|
||||
"--disable-shared"
|
||||
"--disable-werror"
|
||||
"--build=i686-unknown-linux-gnu"
|
||||
"--host=i686-unknown-linux-gnu"
|
||||
"--with-sysroot=/"
|
||||
,(string-append "--prefix=" out))))
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(replace 'setenv
|
||||
(lambda _
|
||||
(let* ((out (assoc-ref %outputs "out"))
|
||||
(bash (assoc-ref %build-inputs "bash"))
|
||||
(shell (string-append bash "/bin/bash")))
|
||||
(setenv "CONFIG_SHELL" shell)
|
||||
#t)))))))))
|
||||
|
||||
(define binutils-mesboot
|
||||
(package
|
||||
(inherit binutils-mesboot0)
|
||||
|
|
Loading…
Reference in a new issue