summaryrefslogtreecommitdiff
path: root/gnu/packages/make-bootstrap.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r--gnu/packages/make-bootstrap.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 16a20271421..5368a092c70 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -79,7 +79,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
79 (_ "glibc-bootstrap-system.patch"))) 79 (_ "glibc-bootstrap-system.patch")))
80 (origin-patches (package-source base)))))) 80 (origin-patches (package-source base))))))
81 (arguments 81 (arguments
82 (substitute-keyword-arguments (package-arguments base) 82 (substitute-keyword-arguments arguments
83 ((#:configure-flags flags) 83 ((#:configure-flags flags)
84 ;; Arrange so that getaddrinfo & co. do not contact the nscd, 84 ;; Arrange so that getaddrinfo & co. do not contact the nscd,
85 ;; and can use statically-linked NSS modules. 85 ;; and can use statically-linked NSS modules.
@@ -187,7 +187,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
187 (bzip2 (package 187 (bzip2 (package
188 (inherit bzip2) 188 (inherit bzip2)
189 (arguments 189 (arguments
190 (substitute-keyword-arguments (package-arguments bzip2) 190 (substitute-keyword-arguments arguments
191 ((#:phases phases) 191 ((#:phases phases)
192 #~(modify-phases #$phases 192 #~(modify-phases #$phases
193 (add-before 'build 'dash-static 193 (add-before 'build 'dash-static
@@ -222,7 +222,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
222 (origin-patches 222 (origin-patches
223 (package-source gawk)))))) 223 (package-source gawk))))))
224 (arguments 224 (arguments
225 (substitute-keyword-arguments (package-arguments gawk) 225 (substitute-keyword-arguments arguments
226 ((#:configure-flags _ #~'()) 226 ((#:configure-flags _ #~'())
227 ;; Starting from gawk 4.1.0, some of the tests for the 227 ;; Starting from gawk 4.1.0, some of the tests for the
228 ;; plug-in mechanism just fail on static builds: 228 ;; plug-in mechanism just fail on static builds:
@@ -245,7 +245,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
245 (tar (package 245 (tar (package
246 (inherit tar) 246 (inherit tar)
247 (arguments 247 (arguments
248 (substitute-keyword-arguments (package-arguments tar) 248 (substitute-keyword-arguments arguments
249 ((#:configure-flags flags #~'()) 249 ((#:configure-flags flags #~'())
250 ;; Work around a cross-compilation bug whereby libgnu.a 250 ;; Work around a cross-compilation bug whereby libgnu.a
251 ;; would provide '__mktime_internal', which conflicts 251 ;; would provide '__mktime_internal', which conflicts
@@ -268,7 +268,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
268 (inherit grep) 268 (inherit grep)
269 (inputs '()) ;remove PCRE, which is optional 269 (inputs '()) ;remove PCRE, which is optional
270 (arguments 270 (arguments
271 (substitute-keyword-arguments (package-arguments grep) 271 (substitute-keyword-arguments arguments
272 ((#:configure-flags flags #~'()) 272 ((#:configure-flags flags #~'())
273 #~(cons "--disable-perl-regexp" 273 #~(cons "--disable-perl-regexp"
274 (delete "--enable-perl-regexp" #$flags))) 274 (delete "--enable-perl-regexp" #$flags)))
@@ -481,7 +481,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
481 (name "gcc-static") 481 (name "gcc-static")
482 (outputs '("out")) ; all in one 482 (outputs '("out")) ; all in one
483 (arguments 483 (arguments
484 (substitute-keyword-arguments (package-arguments gcc-14) 484 (substitute-keyword-arguments arguments
485 ((#:modules modules %default-gnu-modules) 485 ((#:modules modules %default-gnu-modules)
486 `((srfi srfi-1) 486 `((srfi srfi-1)
487 (srfi srfi-26) 487 (srfi srfi-26)
@@ -625,7 +625,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
625 (replace "libgc" libgc/static-libs))) 625 (replace "libgc" libgc/static-libs)))
626 626
627 (arguments 627 (arguments
628 (substitute-keyword-arguments (package-arguments guile) 628 (substitute-keyword-arguments arguments
629 ((#:configure-flags flags #~'()) 629 ((#:configure-flags flags #~'())
630 ;; When `configure' checks for ltdl availability, it 630 ;; When `configure' checks for ltdl availability, it
631 ;; doesn't try to link using libtool, and thus fails 631 ;; doesn't try to link using libtool, and thus fails