From bef5dd93a8f3b2041342d6b1ba9282dd56449f64 Mon Sep 17 00:00:00 2001 From: Martin Bravenboer Date: Mon, 2 Oct 2006 21:16:55 +0000 Subject: [PATCH] Use ++ for constructing builder args svn path=/nixpkgs/trunk/; revision=6643 --- pkgs/stdenv/mingw/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/stdenv/mingw/default.nix b/pkgs/stdenv/mingw/default.nix index 1813c4feb76..ae06ef133b4 100644 --- a/pkgs/stdenv/mingw/default.nix +++ b/pkgs/stdenv/mingw/default.nix @@ -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";