diff options
author | alexbiehl <alex.biehl@gmail.com> | 2017-04-11 19:46:29 +0200 |
---|---|---|
committer | alexbiehl <alex.biehl@gmail.com> | 2017-04-11 19:46:29 +0200 |
commit | 62ae5e71ceaee2e5ae58c87f870cdc5ccfe67e33 (patch) | |
tree | b52e635891ecb53db5a9b924e477b06a21a88219 /build-windows-dist.sh | |
parent | 8260f433c5e7b9baf47ae94f2208a2eedfad189d (diff) |
Move dist scripts to scripts/
Diffstat (limited to 'build-windows-dist.sh')
-rw-r--r-- | build-windows-dist.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/build-windows-dist.sh b/build-windows-dist.sh deleted file mode 100644 index 2ae7dd2a..00000000 --- a/build-windows-dist.sh +++ /dev/null @@ -1,18 +0,0 @@ -# mini script for building the relocatable Windows binary distribution.
-#
-# sh build-windows-dist.sh
-#
-# NB. the Cabal that shipped with GHC 6.6 isn't enough for this, because it
-# is missing this patch:
-#
-# Fri Oct 13 11:09:41 BST 2006 Simon Marlow <simonmar@microsoft.com>
-# * Fix getDataDir etc. when bindir=$prefix
-#
-# So you need to use a more recent Cabal. GHC 6.6 is fine for building the
-# package, though.
-
-ghc --make Setup
-./Setup configure --prefix=`pwd`/install --bindir='$prefix' --libdir='$prefix' --datadir='$prefix'
-./Setup build
-./Setup install
-echo Now zip up `pwd`/install as "haddock-<version>-Win32.zip"
|