diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-11 23:12:16 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-20 13:27:16 +0100 |
| commit | 1ae20f03f43a2af2bcde3751a2809fe152298d34 (patch) | |
| tree | be11f116044ab4cbc7994e2cf88ded0e21db4bbc /gnu/packages/cross-base.scm | |
| parent | 4ba653e637940b147ea5cdcf45397b8ac7f3d014 (diff) | |
gnu: Reference the inherited inputs values.
This commit was made by running this command:
sed -e's/modify-inputs (package-\([a-z-]*\)inputs [a-zA-Z0-9-]\+)/modify-inputs \1inputs/g' -i gnu/packages/*.scm
… and then reverting individual hunks where the change would trigger unbound
variable warnings or other issues (such as ‘native-inputs’ is bound in the
body of the ‘inputs’ field, but it refers to the ‘native-inputs’ thunk defined
just above).
Change-Id: I6d94819f2809313fa1fbefc61897502ee7d66fab
Diffstat (limited to 'gnu/packages/cross-base.scm')
| -rw-r--r-- | gnu/packages/cross-base.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/cross-base.scm b/gnu/packages/cross-base.scm index a550e0c47b1..20b89348c2b 100644 --- a/gnu/packages/cross-base.scm +++ b/gnu/packages/cross-base.scm | |||
| @@ -457,7 +457,7 @@ target that libc." | |||
| 457 | "x86_64"))))))))))) | 457 | "x86_64"))))))))))) |
| 458 | (supported-systems %supported-systems) | 458 | (supported-systems %supported-systems) |
| 459 | (native-inputs | 459 | (native-inputs |
| 460 | (modify-inputs (package-native-inputs gnumach-headers) | 460 | (modify-inputs native-inputs |
| 461 | (prepend xgcc xbinutils))))) | 461 | (prepend xgcc xbinutils))))) |
| 462 | 462 | ||
| 463 | (define* (cross-mig target | 463 | (define* (cross-mig target |
| @@ -490,10 +490,10 @@ the base compiler. Use XBINUTILS as the associated cross-Binutils." | |||
| 490 | '#$%gcc-cross-include-paths)))))))) | 490 | '#$%gcc-cross-include-paths)))))))) |
| 491 | (propagated-inputs | 491 | (propagated-inputs |
| 492 | (list xgnumach-headers)) | 492 | (list xgnumach-headers)) |
| 493 | (inputs (modify-inputs (package-inputs mig) | 493 | (inputs (modify-inputs inputs |
| 494 | (delete "gnumach-headers"))) | 494 | (delete "gnumach-headers"))) |
| 495 | (native-inputs | 495 | (native-inputs |
| 496 | (modify-inputs (package-native-inputs mig) | 496 | (modify-inputs native-inputs |
| 497 | (prepend xgcc xbinutils))))) | 497 | (prepend xgcc xbinutils))))) |
| 498 | 498 | ||
| 499 | (define* (cross-kernel-headers* target | 499 | (define* (cross-kernel-headers* target |
