mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Use ++ for constructing builder args
svn path=/nixpkgs/trunk/; revision=6643
This commit is contained in:
parent
7d83cda3c1
commit
bef5dd93a8
1 changed files with 2 additions and 3 deletions
|
@ -98,13 +98,12 @@ let {
|
|||
if attrs ? args then
|
||||
attrs.args
|
||||
else
|
||||
["-e" (
|
||||
["-e"] ++ (
|
||||
if attrs ? builder then
|
||||
[./fix-builder.sh attrs.builder]
|
||||
else
|
||||
[./fix-builder.sh ./default-builder.sh]
|
||||
)
|
||||
];
|
||||
);
|
||||
inherit stdenv system;
|
||||
C_INCLUDE_PATH = mingwRuntimeSrc + "/include" + ":" + w32apiSrc + "/include";
|
||||
CPLUS_INCLUDE_PATH = mingwRuntimeSrc + "/include" + ":" + w32apiSrc + "/include";
|
||||
|
|
Loading…
Reference in a new issue