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:
parent
a260b3d681
commit
526103a82d
@ -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
|
||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray=(-j''$NIX_BUILD_CORES)
|
||||
makeFlagsArray=(-j$NIX_BUILD_CORES)
|
||||
'';
|
||||
|
||||
NIX_LDFLAGS = "-no_dtrace_dof";
|
||||
|
Loading…
Reference in New Issue
Block a user