Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8c11e30eec60
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 508b202db321
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 13, 2018

  1. glibc: Add helpful comment.

    Intended to avoid contributor confusion as in #50231.
    nh2 committed Nov 13, 2018
    Copy the full SHA
    432c28a View commit details
  2. Merge pull request #50291 from nh2/glibc-override-comment

    glibc: Add helpful comment.
    srhb authored Nov 13, 2018
    Copy the full SHA
    508b202 View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 pkgs/development/libraries/glibc/default.nix
6 changes: 6 additions & 0 deletions pkgs/development/libraries/glibc/default.nix
Original file line number Diff line number Diff line change
@@ -10,6 +10,12 @@ callPackage ./common.nix { inherit stdenv; } {

inherit withLinuxHeaders profilingLibraries installLocales withGd;

# Note:
# Things you write here override, and do not add to,
# the values in `common.nix`.
# (For example, if you define `patches = [...]` here, it will
# override the patches in `common.nix`.)

NIX_NO_SELF_RPATH = true;

postConfigure = ''