diff options
author | Alec Theriault <alec.theriault@gmail.com> | 2019-04-16 08:03:27 -0700 |
---|---|---|
committer | Alec Theriault <alec.theriault@gmail.com> | 2019-05-13 16:10:07 -0700 |
commit | 7068bb1054cd52604da4d3c9b02f20662a8344d2 (patch) | |
tree | 5052b41fbd0c85e416cd8ebc9b9325c1286e39ed /scripts/build-windows-dist.sh | |
parent | 1126fe196fd0d5a2ad73e965982d6c75a2df0279 (diff) |
Remove outdated `.ghci` files and `scripts`
The `.ghci` files are actively annoying when trying to `cabal v2-repl`.
As for the `scripts`, the distribution workflow is completely different.
Diffstat (limited to 'scripts/build-windows-dist.sh')
-rw-r--r-- | scripts/build-windows-dist.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/build-windows-dist.sh b/scripts/build-windows-dist.sh deleted file mode 100644 index 2ae7dd2a..00000000 --- a/scripts/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"
|