3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01: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:
Ludovic Courtès 2016-10-01 12:15:02 +02:00
parent 712b62d8f7
commit 8d29bfa9fc
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -198,6 +198,10 @@ without modification.")
"--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")
'()))))))))