summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorcidkidnix <cidkidnix@protonmail.com>2022-09-23 14:50:09 -0500
committercidkidnix <cidkidnix@protonmail.com>2022-09-23 14:50:09 -0500
commit0bf33f0e83d771f2ff819c543df2061a48e06d4d (patch)
tree50704608b567a8a5d3e1cc9fa3959e34cfe3cb90 /pkgs/shells/bash
parent2870a5e506c82e538e591e96bd1f1f6c8aafd6c1 (diff)
downloadnixpkgs-0bf33f0e83d771f2ff819c543df2061a48e06d4d.tar
nixpkgs-0bf33f0e83d771f2ff819c543df2061a48e06d4d.tar.gz
nixpkgs-0bf33f0e83d771f2ff819c543df2061a48e06d4d.tar.bz2
nixpkgs-0bf33f0e83d771f2ff819c543df2061a48e06d4d.tar.lz
nixpkgs-0bf33f0e83d771f2ff819c543df2061a48e06d4d.tar.xz
nixpkgs-0bf33f0e83d771f2ff819c543df2061a48e06d4d.tar.zst
nixpkgs-0bf33f0e83d771f2ff819c543df2061a48e06d4d.zip
bash: make android comment more clear
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/5.1.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/shells/bash/5.1.nix b/pkgs/shells/bash/5.1.nix
index d6ec8268ea6..05f7ba850b8 100644
--- a/pkgs/shells/bash/5.1.nix
+++ b/pkgs/shells/bash/5.1.nix
@@ -34,7 +34,8 @@ stdenv.mkDerivation rec {
   };
 
   hardeningDisable = [ "format" ]
-  # https://android.googlesource.com/platform/bionic/+/1342527b5791a53bf441322ab9adf41c8e060a1e%5E2..1342527b5791a53bf441322ab9adf41c8e060a1e/
+  # bionic libc is super weird and has issues with fortify outside of its own libc, check this comment:
+  # https://github.com/NixOS/nixpkgs/pull/192630#discussion_r978985593
   ++ optional (stdenv.hostPlatform.libc == "bionic") "fortify";
 
   outputs = [ "out" "dev" "man" "doc" "info" ];