diff options
author | 2013-12-05 13:55:01 -0400 | |
---|---|---|
committer | 2013-12-05 13:55:01 -0400 | |
commit | 6fecf0f947b55eefe4788734f1215d23dd0e7b66 (patch) | |
tree | 5167a2659ac23ebf312632f2278df702e94f1c0f /standalone | |
parent | 60e91fdf302a541901a07028b3357dcaada98577 (diff) |
fix build
Diffstat (limited to 'standalone')
-rw-r--r-- | standalone/windows/build.sh | 7 |
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 |