Revert "gnustep-make: fix installation path"

This reverts commit 4f1559a75190c8e702d8c0d88c4c3791e47fcd4b.

+5 -2
+5 -2
pkgs/development/tools/build-managers/gnustep/make/default.nix
··· 11 12 patchPhase = '' 13 substituteInPlace GNUmakefile.in \ 14 - --replace which type 15 16 substituteInPlace FilesystemLayouts/apple \ 17 --replace /usr/local "" ··· 20 --replace /Library/GNUstep "$out" 21 ''; 22 23 - installFlags = [ "PREFIX=$(out)" ]; 24 25 postInstall = '' 26 mkdir -p $out/nix-support
··· 11 12 patchPhase = '' 13 substituteInPlace GNUmakefile.in \ 14 + --replace which type \ 15 + --replace 'tooldir = $(DESTDIR)' 'tooldir = ' \ 16 + --replace 'makedir = $(DESTDIR)' 'makedir = ' \ 17 + --replace 'mandir = $(DESTDIR)' 'mandir = ' 18 19 substituteInPlace FilesystemLayouts/apple \ 20 --replace /usr/local "" ··· 23 --replace /Library/GNUstep "$out" 24 ''; 25 26 + installFlags = "DESTDIR=$(out)"; 27 28 postInstall = '' 29 mkdir -p $out/nix-support