mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-24 19:27:44 +01:00
gnu: heimdal: Refer to cross-compiled bash.
* gnu/packages/kerberos.scm (heimdal)[arguments]<#:phases>{pre-configure}: Let "appl/afsutil/pagsh.c" refer to the cross-compiled bash instead of the native bash when cross-compiling.
This commit is contained in:
parent
f706689a8d
commit
527455be35
1 changed files with 18 additions and 5 deletions
|
@ -231,11 +231,24 @@ (define-public heimdal
|
|||
'()))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-before 'configure 'pre-configure
|
||||
(lambda _
|
||||
(substitute* '("appl/afsutil/pagsh.c"
|
||||
"tools/Makefile.in")
|
||||
(("/bin/sh") (which "sh")))
|
||||
#t))
|
||||
;; TODO(core-updates): Unconditionally use the
|
||||
;; %current-target-system branch.
|
||||
(,(if (%current-target-system)
|
||||
'lambda*
|
||||
'lambda)
|
||||
,(if (%current-target-system)
|
||||
'(#:key inputs #:allow-other-keys)
|
||||
'_)
|
||||
,@(if (%current-target-system)
|
||||
'((substitute* '("appl/afsutil/pagsh.c")
|
||||
(("/bin/sh")
|
||||
(search-input-file inputs "bin/sh")))
|
||||
(substitute* '("tools/Makefile.in")
|
||||
(("/bin/sh") (which "sh"))))
|
||||
'((substitute* '("appl/afsutil/pagsh.c"
|
||||
"tools/Makefile.in")
|
||||
(("/bin/sh") (which "sh")))
|
||||
#t))))
|
||||
(add-before 'check 'pre-check
|
||||
(lambda _
|
||||
;; For 'getxxyyy-test'.
|
||||
|
|
Loading…
Reference in a new issue