about summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-11-21 07:58:32 +0000
committerGitHub <noreply@github.com>2018-11-21 07:58:32 +0000
commitecf1ded46649619ec178e9550d4f35a6cdaadff1 (patch)
tree3aed9fc0b85f51ba1675aa581bbc2e1369cdd77a /pkgs/shells/bash
parent88d20b2052bd13461bd69bf2df2e0bafbc2b5383 (diff)
downloadnixlib-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar
nixlib-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.gz
nixlib-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.bz2
nixlib-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.lz
nixlib-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.xz
nixlib-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.zst
nixlib-ecf1ded46649619ec178e9550d4f35a6cdaadff1.zip
bash: fix typo in configureFlags
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/4.4.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/shells/bash/4.4.nix b/pkgs/shells/bash/4.4.nix
index 313a2710b287..6f970e1b7ade 100644
--- a/pkgs/shells/bash/4.4.nix
+++ b/pkgs/shells/bash/4.4.nix
@@ -58,7 +58,8 @@ stdenv.mkDerivation rec {
     "bash_cv_sys_named_pipes=nomissing"
     "bash_cv_getcwd_malloc=yes"
   ] ++ optionals stdenv.hostPlatform.isCygwin [
-    "--without-libintl-prefix --without-libiconv-prefix"
+    "--without-libintl-prefix"
+    "--without-libiconv-prefix"
     "--with-installed-readline"
     "bash_cv_dev_stdin=present"
     "bash_cv_dev_fd=standard"