[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: guile-reader: Build with the C locale.
From: |
Ludovic Courtès |
Subject: |
06/07: gnu: guile-reader: Build with the C locale. |
Date: |
Thu, 12 Mar 2015 21:52:33 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 7d9e8c08572f02e3742b759027e2943499ad25de
Author: Ludovic Courtès <address@hidden>
Date: Thu Mar 12 22:46:28 2015 +0100
gnu: guile-reader: Build with the C locale.
* gnu/packages/guile.scm (guile-reader)[arguments]: Add #:locale.
---
gnu/packages/guile.scm | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 9fde949..c605533 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -198,7 +198,13 @@ without requiring the source code to be rewritten.")
(native-inputs `(("pkgconfig" ,pkg-config)
("gperf" ,gperf)))
(inputs `(("guile" ,guile-2.0)))
- (arguments `(#:configure-flags
+ (arguments `(;; The extract-*.sh scripts really expect to run in the C
+ ;; locale. Failing to do that, we end up with a build
+ ;; failure while extracting doc. (Fixed in Guile-Reader's
+ ;; repo.)
+ #:locale "C"
+
+ #:configure-flags
(let ((out (assoc-ref %outputs "out")))
(list (string-append "--with-guilemoduledir="
out "/share/guile/site/2.0")))))
- branch master updated (81ce19f -> b3976e7), Ludovic Courtès, 2015/03/12
- 02/07: system: Add fish, tcsh, and zsh to /etc/shells., Ludovic Courtès, 2015/03/12
- 03/07: gnu: bash-completion: Search for completion modules in profiles., Ludovic Courtès, 2015/03/12
- 04/07: gnu: git: Install Bash completion as 'etc/bash_completion.d/git'., Ludovic Courtès, 2015/03/12
- 05/07: system: Add /etc/bashrc that loads bash-completion when available., Ludovic Courtès, 2015/03/12
- 07/07: gnu: skribilo: Add dependency on Ploticus., Ludovic Courtès, 2015/03/12
- 01/07: system: Remove duplicated line from export., Ludovic Courtès, 2015/03/12
- 06/07: gnu: guile-reader: Build with the C locale.,
Ludovic Courtès <=