bootstrap: bison-boot0: Do not use `ranlib -D'.
* gnu/packages/commencement.scm (bison-boot0): Do not use `ranlib -D' for i686-linux bootstrap.
This commit is contained in:
parent
0b652851b1
commit
56f45b7c78
|
@ -1862,13 +1862,16 @@ exec " gcc "/bin/" program
|
||||||
(propagated-inputs `(("m4" ,m4)))
|
(propagated-inputs `(("m4" ,m4)))
|
||||||
(inputs '()) ;remove Flex...
|
(inputs '()) ;remove Flex...
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;... and thus disable tests
|
`(#:tests? #f ;... and thus disable tests
|
||||||
|
|
||||||
;; Zero timestamps in liby.a; this must be done
|
;; Zero timestamps in liby.a; this must be done
|
||||||
;; explicitly here because the bootstrap Binutils don't
|
;; explicitly here because the bootstrap Binutils don't
|
||||||
;; do that (default is "cru".)
|
;; do that (default is "cru".)
|
||||||
#:make-flags '("ARFLAGS=crD"
|
#:make-flags `("ARFLAGS=crD"
|
||||||
"RANLIB=ranlib -D"
|
,,(match (%current-system)
|
||||||
|
;; ranlib: '-D': No such file
|
||||||
|
("i686-linux" "RANLIB=ranlib")
|
||||||
|
(_ "RANLIB=ranlib -D"))
|
||||||
"V=1"))))))
|
"V=1"))))))
|
||||||
(package
|
(package
|
||||||
(inherit (package-with-bootstrap-guile
|
(inherit (package-with-bootstrap-guile
|
||||||
|
|
Loading…
Reference in New Issue