gnu: commencement: Remove unneeded configure flag for bootstrap gettext.

* gnu/packages/commencement.scm (gettext-boot0): Remove unneeded
  --disable-threads.
This commit is contained in:
Ludovic Courtès 2015-04-22 00:31:22 +02:00
parent cc8ddcb097
commit 669b8639a2
1 changed files with 24 additions and 26 deletions

View File

@ -421,14 +421,13 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
(define gettext-boot0
;; A minimal gettext used during bootstrap.
(let ((gettext-minimal (package
(inherit gnu-gettext)
(let ((gettext-minimal
(package (inherit gnu-gettext)
(name "gettext-boot0")
(inputs '()) ;zero dependencies
(arguments
(substitute-keyword-arguments
`(#:configure-flags '("--disable-threads")
#:tests? #f
`(#:tests? #f
,@(package-arguments gnu-gettext))
((#:phases phases)
`(modify-phases ,phases
@ -437,8 +436,7 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
(lambda _
(chdir "gettext-tools")))
;; Some test programs require pthreads,
;; which we don't have.
;; Some test programs require pthreads, which we don't have.
(add-before 'configure 'no-test-programs
(lambda _
(substitute* "tests/Makefile.in"