Use ++ for constructing builder args

svn path=/nixpkgs/trunk/; revision=6643
This commit is contained in:
Martin Bravenboer 2006-10-02 21:16:55 +00:00
parent 7d83cda3c1
commit bef5dd93a8

View file

@ -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";