summary refs log tree commit diff
path: root/pkgs/development/compilers/fsharp
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-03-29 19:55:07 -0500
committerAustin Seipp <aseipp@pobox.com>2014-03-29 19:55:12 -0500
commitc038133721c59d206283999513cfb892fcec1412 (patch)
treed372cb1931c6d53d7279249a9b94e64c1cdd7c41 /pkgs/development/compilers/fsharp
parent090ee41e6bc1a0fae5c0e85ed213e9ae97211cc3 (diff)
downloadnixlib-c038133721c59d206283999513cfb892fcec1412.tar
nixlib-c038133721c59d206283999513cfb892fcec1412.tar.gz
nixlib-c038133721c59d206283999513cfb892fcec1412.tar.bz2
nixlib-c038133721c59d206283999513cfb892fcec1412.tar.lz
nixlib-c038133721c59d206283999513cfb892fcec1412.tar.xz
nixlib-c038133721c59d206283999513cfb892fcec1412.tar.zst
nixlib-c038133721c59d206283999513cfb892fcec1412.zip
fsharp: fix missing --replace argument
This should fix the Hydra build.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/development/compilers/fsharp')
-rw-r--r--pkgs/development/compilers/fsharp/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/fsharp/default.nix b/pkgs/development/compilers/fsharp/default.nix
index 8cc283bc3f14..963c7e2cb5c5 100644
--- a/pkgs/development/compilers/fsharp/default.nix
+++ b/pkgs/development/compilers/fsharp/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ mono pkgconfig autoconf automake which ];
   configurePhase = ''
-    substituteInPlace ./autogen.sh "/usr/bin/env sh" "/bin/sh"
+    substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "/bin/sh"
     ./autogen.sh --prefix $out
   '';