Revert "gnustep-make: fix installation path"

This reverts commit 4f1559a75190c8e702d8c0d88c4c3791e47fcd4b.
This commit is contained in:
Jude Taylor 2016-01-02 19:59:46 -08:00
parent c781d7d88e
commit 08c081309b

View File

@ -11,7 +11,10 @@ stdenv.mkDerivation rec {
patchPhase = ''
substituteInPlace GNUmakefile.in \
--replace which type
--replace which type \
--replace 'tooldir = $(DESTDIR)' 'tooldir = ' \
--replace 'makedir = $(DESTDIR)' 'makedir = ' \
--replace 'mandir = $(DESTDIR)' 'mandir = '
substituteInPlace FilesystemLayouts/apple \
--replace /usr/local ""
@ -20,7 +23,7 @@ stdenv.mkDerivation rec {
--replace /Library/GNUstep "$out"
'';
installFlags = [ "PREFIX=$(out)" ];
installFlags = "DESTDIR=$(out)";
postInstall = ''
mkdir -p $out/nix-support