janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit d8718b208ad5422a3a2904f80374f1501628656f
Author: Jan Nieuwenhuizen <[email protected]>
Date: Mon Sep 16 19:50:25 2019 +0200
bootstrap: mescc-tools-static: Update to 0.6.1.
* gnu/packages/make-bootstrap.scm (%mescc-tools-static): Update to 0.6.1.
---
gnu/packages/make-bootstrap.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index b8d1b2a..caf5a8b 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -607,13 +607,15 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
(define %mescc-tools-static
;; A statically linked MesCC Tools.
(package
- (inherit mescc-tools-0.5.2)
+ (inherit mescc-tools)
(name "mescc-tools-static")
(arguments
`(#:system "i686-linux"
- ,@(substitute-keyword-arguments (package-arguments mescc-tools)
- ((#:make-flags flags)
- `(cons "CC=gcc -static" ,flags)))))))
+ #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+ "CC=gcc -static")
+ #:test-target "test"
+ #:phases (modify-phases %standard-phases
+ (delete 'configure))))))
;; ... next remove store references.
(define %mescc-tools-static-stripped