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:
parent
7c859a4bdc
commit
7194179854
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue