mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
guix: gnu-dist: Fix distcheck.
* guix/build/gnu-dist.scm (build): Add a configure-flag during the distcheck rebuild to use a shell we have in the build environment. Change-Id: I3519ab498ef47728729297a70ac1dce8e1b922ee
This commit is contained in:
parent
57b43d9af9
commit
ed69ed73c1
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2015, 2020, 2023 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2015, 2020, 2023 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
|
||||||
|
;;; Copyright © 2025 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -37,6 +38,8 @@
|
||||||
(let ((build (assq-ref %standard-phases 'build)))
|
(let ((build (assq-ref %standard-phases 'build)))
|
||||||
(apply build args)))
|
(apply build args)))
|
||||||
(format #t "building target `~a'~%" dist-target)
|
(format #t "building target `~a'~%" dist-target)
|
||||||
|
(setenv "DISTCHECK_CONFIGURE_FLAGS"
|
||||||
|
(string-append "SHELL=" (which "sh")))
|
||||||
(apply invoke "make" dist-target make-flags))
|
(apply invoke "make" dist-target make-flags))
|
||||||
|
|
||||||
(define* (install-dist #:key outputs #:allow-other-keys)
|
(define* (install-dist #:key outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue