summary refs log tree commit diff
path: root/pkgs/shells
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
parent88d20b2052bd13461bd69bf2df2e0bafbc2b5383 (diff)
downloadnixpkgs-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar
nixpkgs-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.gz
nixpkgs-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.bz2
nixpkgs-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.lz
nixpkgs-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.xz
nixpkgs-ecf1ded46649619ec178e9550d4f35a6cdaadff1.tar.zst
nixpkgs-ecf1ded46649619ec178e9550d4f35a6cdaadff1.zip
bash: fix typo in configureFlags
Diffstat (limited to 'pkgs/shells')
-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 313a2710b28..6f970e1b7ad 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"