civodul pushed a commit to branch core-updates
in repository guix.
commit 70db9576f467a09ddcc08a7d590dc88f9822e68b
Author: Manolis Ragkousis <[email protected]>
Date: Tue Jun 9 01:14:03 2015 +0300
gnu: make-bootstrap: Remove unneeded configure flag from %gcc-static.
With this commit "guix build bootstrap-tarballs --target=i686-pc-gnu" works.
* gnu/packages/make-bootstrap.scm (%gcc-static): Remove unneeded
--disable-decimal-float.
---
gnu/packages/make-bootstrap.scm | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index d215a02..a12f4c1 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -423,8 +423,7 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
"--disable-libcilkrts"
"--disable-libvtv"
"--disable-libssp"
- "--disable-libquadmath"
- "--disable-decimal-float")
+ "--disable-libquadmath")
(remove (cut string-match
"--(.*plugin|enable-languages)" <>)
,flags)))
((#:phases phases)