diff options
author | Carlos Sánchez de La Lama <csanchezdll@gmail.com> | 2016-10-18 18:07:29 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-02-09 16:58:51 +0200 |
commit | 17c732295aef09e8e9b485ce38af60cb6cd357fb (patch) | |
tree | 186db9420ed717e317ab5218c39551101dcd0821 /gnu/packages | |
parent | 7ca72ec44bf52d459f1fbd994037b792999fe0eb (diff) |
gnu: bash-minimal: Assume getcwd works correctly when cross-compiling
* gnu/packages/bash.scm (bash-minimal): Assume getcwd works correctly
when cross compiling.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bash.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index 96ebe991e4..d5e3549573 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -226,7 +226,8 @@ without modification.") "ac_cv_func_dlopen=no" ,@(if (%current-target-system) - '("bash_cv_job_control_missing=no") + '("bash_cv_job_control_missing=no" + "bash_cv_getcwd_malloc=yes") '()))) ((#:phases phases) `(modify-phases ,phases |