darwin: fix syntax in makeFlagsArray

the double ’ should only be needed when using the braces. Otherwise
this will mess up some syntax highlighting, unfortunately, including nix-mode.
This commit is contained in:
Matthew Bauer 2018-07-02 17:48:29 -04:00
parent a260b3d681
commit 526103a82d
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ name: version: sha256: args: let
'';
preBuild = ''
ln -s lib ${n}
makeFlagsArray=(-j''$NIX_BUILD_CORES)
makeFlagsArray=(-j$NIX_BUILD_CORES)
'';
buildInputs = [
pkgs.gnustep.make

View File

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
'';
preBuild = ''
makeFlagsArray=(-j''$NIX_BUILD_CORES)
makeFlagsArray=(-j$NIX_BUILD_CORES)
'';
NIX_LDFLAGS = "-no_dtrace_dof";