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.
This commit is contained in:
Tuomas Tynkkynen 2017-04-22 23:37:56 +03:00
parent 7c859a4bdc
commit 7194179854

View file

@ -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