gnu: git-minimal: Fix cross build.

This is a follow-up to

    aae7b00d52275619e7676e948bf286d2a1ffbdb2
    gnu: git: Remove labels and use gexps.

* gnu/packages/version-control.scm (git-minimal)[arguments]: Use #+ to access
native-inputs for bash-minimal and bash.

Change-Id: I6b4cb18123d6f98bda84726b99531c88542be12d
This commit is contained in:
Janneke Nieuwenhuizen 2024-01-13 16:05:59 +01:00 committed by Ludovic Courtès
parent 3d8a838d91
commit 0570c7e7d7
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -28,7 +28,7 @@
;;; Copyright © 2020 Roel Janssen <roel@gnu.org> ;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
;;; Copyright © 2020, 2021 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2020, 2021 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2020 John D. Boy <jboy@bius.moe> ;;; Copyright © 2020 John D. Boy <jboy@bius.moe>
;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2020, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org> ;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de>
@ -275,12 +275,12 @@ (define-public git-minimal
#:make-flags #:make-flags
#~(list "V=1" ;more verbose compilation #~(list "V=1" ;more verbose compilation
(string-append "SHELL_PATH=" (string-append "SHELL_PATH="
#$(this-package-native-input "bash-minimal") #+(this-package-native-input "bash-minimal")
"/bin/sh") "/bin/sh")
;; Tests require a bash with completion support. ;; Tests require a bash with completion support.
(string-append "TEST_SHELL_PATH=" (string-append "TEST_SHELL_PATH="
#$(this-package-native-input "bash") #+(this-package-native-input "bash")
"/bin/bash") "/bin/bash")
;; By default 'make install' creates hard links for ;; By default 'make install' creates hard links for