mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: bash-minimal: Disable loadable module support.
* gnu/packages/bash.scm (bash-minimal)[arguments]: Add 'ac_cv_func_dlopen=no' to #:configure-flags.
This commit is contained in:
parent
712b62d8f7
commit
8d29bfa9fc
1 changed files with 4 additions and 0 deletions
|
@ -198,6 +198,10 @@ (define-public bash-minimal
|
|||
"--disable-net-redirections"
|
||||
"--disable-nls"
|
||||
|
||||
;; Pretend 'dlopen' is missing so we don't build loadable
|
||||
;; modules and related code.
|
||||
"ac_cv_func_dlopen=no"
|
||||
|
||||
,@(if (%current-target-system)
|
||||
'("bash_cv_job_control_missing=no")
|
||||
'()))))))))
|
||||
|
|
Loading…
Reference in a new issue