From 719417985473eabd0f3c6e1f0083b77c86ed4749 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 22 Apr 2017 23:37:56 +0300 Subject: [PATCH] bash: Remove unnecessary 'Makefile.inc' that is keeping reference to bootstrap-tools The file is an example makefile for developing bash plugins, and contains stuff like: ```` example: example.o $(SHOBJ_LD) $(SHOBJ_LDFLAGS) $(SHOBJ_XLDFLAGS) -o $@ example.o $(SHOBJ_LIBS) ```` So no package is really going to depend on that, and it's making the .dev output keep a reference to the bootstrap tools. Just nuke it. --- pkgs/shells/bash/4.4.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/bash/4.4.nix b/pkgs/shells/bash/4.4.nix index 988b4f711cb..061f183e96e 100644 --- a/pkgs/shells/bash/4.4.nix +++ b/pkgs/shells/bash/4.4.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { postInstall = '' ln -s bash "$out/bin/sh" - moveToOutput lib/bash/Makefile.inc "$dev" + rm $out/lib/bash/Makefile.inc ''; postFixup = if interactive