diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-12-14 17:05:08 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-12-14 23:55:55 +0100 |
commit | 4dd1edc7aed15f88f7c2d2f7975368db1ea82143 (patch) | |
tree | a76ca7d58b3b3adda8ec7d544db09bd3c3de783b /gnu/packages/make-bootstrap.scm | |
parent | 6ec3de976b26a596523fbcb85c1b0860c4e3f933 (diff) | |
download | patches-4dd1edc7aed15f88f7c2d2f7975368db1ea82143.tar patches-4dd1edc7aed15f88f7c2d2f7975368db1ea82143.tar.gz |
gnu: glibc-stripped: Empty 'native-inputs' and 'propagated-inputs'.
These would needlessly pull in linux-libre-headers when running
"guix build bootstrap-tarballs --target=i586-pc-gnu".
* gnu/packages/make-bootstrap.scm (%glibc-stripped)[native-inputs]
[propagated-inputs]: New fields.
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 65d632f64e..c6002eb63a 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -382,6 +382,8 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." (parameterize ((%current-target-system #f)) (cross-libc target))) glibc))))) + (native-inputs '()) + (propagated-inputs '()) ;; Only one output. (outputs '("out"))))) |