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.master
parent
f706689a8d
commit
527455be35
gnu/packages
|
@ -231,11 +231,24 @@ After installation, the system administrator should generate keys using
|
|||
'()))
|
||||
#: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'.
|
||||
|
|
Reference in New Issue