diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-05-17 14:13:42 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-05-17 14:13:42 +0200 |
commit | 8359a5f1872dd0e05d21c20181e978028fe7c047 (patch) | |
tree | e21f177dbf5a6db884beb892cc05f293fd73272e /gnu/packages/autotools.scm | |
parent | ae9c5966c1a0405765bd49cc2058073f87931298 (diff) | |
download | guix-8359a5f1872dd0e05d21c20181e978028fe7c047.tar guix-8359a5f1872dd0e05d21c20181e978028fe7c047.tar.gz |
gnu: autoconf-wrapper: Use 'bash-minimal'.
* gnu/packages/autotools.scm (make-autoconf-wrapper)[inputs]: Change from BASH
to BASH-MINIMAL.
Diffstat (limited to 'gnu/packages/autotools.scm')
-rw-r--r-- | gnu/packages/autotools.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index 775576ff5d..5c60154e7f 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -171,7 +171,7 @@ files with a system-specific shebang." ,(module-ref (resolve-interface '(gnu packages guile)) 'guile-2.0)) ("autoconf" ,autoconf) - ("bash" ,bash))) + ("bash" ,bash-minimal))) (arguments '(#:modules ((guix build utils)) #:builder |