From 9111e4544db3e89b930cebc69d07f8e12ebeb706 Mon Sep 17 00:00:00 2001 From: Mike Voorhees Date: Thu, 14 Apr 2016 13:50:50 -0400 Subject: [PATCH] Fix line ending error on windows --- build.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.pl b/build.pl index 9f7f5d4..955618a 100644 --- a/build.pl +++ b/build.pl @@ -321,6 +321,9 @@ if ($build) } else { + # Fixes a line ending issue that happens on windows when we try to run autogen.sh + $ENV{'SHELLOPTS'} = "igncr"; + push @configureparams, "--host=$monoHostArch-pc-mingw32"; }