summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-04-22 23:37:56 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-04-26 13:19:51 +0300
commit719417985473eabd0f3c6e1f0083b77c86ed4749 (patch)
tree6e369c86e4db20b8cb56e445828dc57f151bd14a /pkgs/shells/bash
parent7c859a4bdc5dfd578d48e3331381ea4403aad4af (diff)
downloadnixpkgs-719417985473eabd0f3c6e1f0083b77c86ed4749.tar
nixpkgs-719417985473eabd0f3c6e1f0083b77c86ed4749.tar.gz
nixpkgs-719417985473eabd0f3c6e1f0083b77c86ed4749.tar.bz2
nixpkgs-719417985473eabd0f3c6e1f0083b77c86ed4749.tar.lz
nixpkgs-719417985473eabd0f3c6e1f0083b77c86ed4749.tar.xz
nixpkgs-719417985473eabd0f3c6e1f0083b77c86ed4749.tar.zst
nixpkgs-719417985473eabd0f3c6e1f0083b77c86ed4749.zip
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.
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/4.4.nix2
1 files changed, 1 insertions, 1 deletions
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