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
@ -81,7 +81,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
ln -s bash "$out/bin/sh"
|
ln -s bash "$out/bin/sh"
|
||||||
moveToOutput lib/bash/Makefile.inc "$dev"
|
rm $out/lib/bash/Makefile.inc
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postFixup = if interactive
|
postFixup = if interactive
|
||||||
|
Loading…
x
Reference in New Issue
Block a user