summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-12-05 13:55:01 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-12-05 13:55:01 -0400
commit6fecf0f947b55eefe4788734f1215d23dd0e7b66 (patch)
tree5167a2659ac23ebf312632f2278df702e94f1c0f
parent60e91fdf302a541901a07028b3357dcaada98577 (diff)
fix build
-rw-r--r--standalone/windows/build.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh
index 3e4f6bde1..cba4d87d1 100644
--- a/standalone/windows/build.sh
+++ b/standalone/windows/build.sh
@@ -8,9 +8,6 @@ set -e
HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0"
-# Any cabal build flags go here.
-FLAGS=""
-
PATH="$HP/bin:$HP/lib/extralibs/bin:/c/Program Files (x86)/NSIS:$PATH"
UPGRADE_LOCATION=http://downloads.kitenet.net/git-annex/windows/current/git-annex-installer.exe
@@ -30,7 +27,7 @@ rm -f git-annex-installer.exe
# for haskell libraries to link them with the cygwin library.
cabal update || true
-cabal install --only-dependencies -f"$FLAGS"
+cabal install --only-dependencies
# Detect when the last build was an incremental build and failed,
# and try a full build. Done this way because this shell seems a bit
@@ -43,7 +40,7 @@ fi
touch last-incremental-failed
# Build git-annex
-withcyg cabal configure -f"$FLAGS"
+withcyg cabal configure
withcyg cabal build
# Build the installer