diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-12-19 00:00:46 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-19 00:02:37 +0100 |
commit | 53088d0045a04b382a18a8fd171bc3e6560c6a06 (patch) | |
tree | b918e1335857367e766db6753ff4714577e06993 /gnu/packages/commencement.scm | |
parent | 3eb34c631a143d77bf11bff2363a76959e45aa50 (diff) | |
download | patches-53088d0045a04b382a18a8fd171bc3e6560c6a06.tar patches-53088d0045a04b382a18a8fd171bc3e6560c6a06.tar.gz |
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.
Diffstat (limited to 'gnu/packages/commencement.scm')
-rw-r--r-- | gnu/packages/commencement.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 32facf2f47..d758913859 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -431,7 +431,14 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" (bison (package (inherit bison) (propagated-inputs `(("m4" ,m4))) (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 (inherit (package-with-bootstrap-guile (package-with-explicit-inputs bison %boot0-inputs |