summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-04-12 16:21:30 +0200
committeraszlig <aszlig@nix.build>2018-04-12 16:21:30 +0200
commit492ca7be2b33ded0108a94a9e8b06e7f2d0590ed (patch)
tree773d45d0dcfff5722a805ada570d38f1cb08a0d4 /pkgs/development/tools/build-managers
parenta7f600b2c26e503efc56bd7fa2a2f0fe13386584 (diff)
downloadnixpkgs-492ca7be2b33ded0108a94a9e8b06e7f2d0590ed.tar
nixpkgs-492ca7be2b33ded0108a94a9e8b06e7f2d0590ed.tar.gz
nixpkgs-492ca7be2b33ded0108a94a9e8b06e7f2d0590ed.tar.bz2
nixpkgs-492ca7be2b33ded0108a94a9e8b06e7f2d0590ed.tar.lz
nixpkgs-492ca7be2b33ded0108a94a9e8b06e7f2d0590ed.tar.xz
nixpkgs-492ca7be2b33ded0108a94a9e8b06e7f2d0590ed.tar.zst
nixpkgs-492ca7be2b33ded0108a94a9e8b06e7f2d0590ed.zip
gnumake3: Fix build against glibc-2.27
This has already been patched against gnumake4 (519f0b8db2f91e73964375e)
but we still have packages depending on gnumake3, so let's also apply
the same patch to gnumake 3.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @shlevy, @vcunat
Diffstat (limited to 'pkgs/development/tools/build-managers')
-rw-r--r--pkgs/development/tools/build-managers/gnumake/3.82/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/tools/build-managers/gnumake/3.82/default.nix b/pkgs/development/tools/build-managers/gnumake/3.82/default.nix
index 87897017f86..94fa7e7201a 100644
--- a/pkgs/development/tools/build-managers/gnumake/3.82/default.nix
+++ b/pkgs/development/tools/build-managers/gnumake/3.82/default.nix
@@ -33,6 +33,9 @@ stdenv.mkDerivation {
       ./construct-command-line.patch
       ./long-command-line.patch
       ./darwin-library_search-dylib.patch
+
+      # Fix support for glibc 2.27's glob
+      ../4.2/glibc-2.27-glob.patch
     ];
   patchFlags = "-p0";