Skip to content

Commit

Permalink
bash: Remove unnecessary 'Makefile.inc' that is keeping reference to …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
dezgeg committed Apr 26, 2017
1 parent 7c859a4 commit 7194179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/shells/bash/4.4.nix
Expand Up @@ -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
Expand Down

0 comments on commit 7194179

Please sign in to comment.