diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-17 12:03:20 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-17 12:03:20 -0400 |
commit | 30096352a925b9b51248ccd00fae0917364991be (patch) | |
tree | c3b463fdc0077757addf55a4eff712c2dbfde4f8 | |
parent | ad9174d7ef85697400033bbe2cf8a4feb6706bc4 (diff) |
fix path to cabal
-rw-r--r-- | standalone/windows/build.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh index 8237b6f19..359a62806 100644 --- a/standalone/windows/build.sh +++ b/standalone/windows/build.sh @@ -6,7 +6,9 @@ set -x set -e -PATH="/c/Program Files (x86)/Haskell Platform/2012.4.0.0/bin:$PATH" +HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0" + +PATH="$HP/bin:$HP/lib/extralibs/bin:$PATH" # Run a command in the cygwin environment. incygwin () { |