gnu: commencement: Build Bison deterministically.
Before that entries in liby.a would contain the build time. * gnu/packages/commencement.scm (bison-boot1): Add #:make-flags.
This commit is contained in:
parent
3eb34c631a
commit
53088d0045
|
@ -431,7 +431,14 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
|
||||||
(bison (package (inherit bison)
|
(bison (package (inherit bison)
|
||||||
(propagated-inputs `(("m4" ,m4)))
|
(propagated-inputs `(("m4" ,m4)))
|
||||||
(inputs '()) ;remove Flex...
|
(inputs '()) ;remove Flex...
|
||||||
(arguments '(#:tests? #f))))) ;... and thus disable tests
|
(arguments
|
||||||
|
'(#:tests? #f ;... and thus disable tests
|
||||||
|
|
||||||
|
;; Zero timestamps in liby.a; this must be done
|
||||||
|
;; explicitly here because the bootstrap Binutils don't
|
||||||
|
;; do that (default is "cru".)
|
||||||
|
#:make-flags '("ARFLAGS=crD" "RANLIB=ranlib -D"
|
||||||
|
"V=1"))))))
|
||||||
(package
|
(package
|
||||||
(inherit (package-with-bootstrap-guile
|
(inherit (package-with-bootstrap-guile
|
||||||
(package-with-explicit-inputs bison %boot0-inputs
|
(package-with-explicit-inputs bison %boot0-inputs
|
||||||
|
|
Loading…
Reference in New Issue