From 000fe587692e2db8829ebd0894e7204f12a86859 Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Sun, 13 Dec 2015 12:02:42 -0800 Subject: [PATCH] adv_cmds: fix typo in file name adv_cmds archive actually contains BSDmakefile, not BSDMakefile. While that probably doesn't matter in default installations, it does matter for case-sensitive filesystems. --- .../darwin/apple-source-releases/adv_cmds/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix index a0261875c102..d72afac88fee 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix @@ -19,7 +19,7 @@ in appleDerivation { buildInputs = [ bsdmake perl yacc flex ]; patchPhase = '' - substituteInPlace BSDMakefile \ + substituteInPlace BSDmakefile \ --replace chgrp true \ --replace /Developer/Makefiles/bin/compress-man-pages.pl true \ --replace "ps.tproj" "" --replace "gencat.tproj" "" --replace "md.tproj" "" \