janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 06e58914f4cbc1147615cf26dcc9b5d1322a85ed
Author: Jan Nieuwenhuizen <[email protected]>
Date: Sat Dec 7 20:35:37 2019 +0100
Revert "bootstrap: mescc-tools-static: Update to 0.6.1."
This reverts commit d8718b208ad5422a3a2904f80374f1501628656f.
---
gnu/packages/make-bootstrap.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index ec6905c..5435043 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -607,15 +607,13 @@ 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)
+ (inherit mescc-tools-0.5.2)
(name "mescc-tools-static")
(arguments
`(#:system "i686-linux"
- #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
- "CC=gcc -static")
- #:test-target "test"
- #:phases (modify-phases %standard-phases
- (delete 'configure))))))
+ ,@(substitute-keyword-arguments (package-arguments mescc-tools)
+ ((#:make-flags flags)
+ `(cons "CC=gcc -static" ,flags)))))))
;; ... next remove store references.
(define %mescc-tools-static-stripped