diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-15 11:36:44 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-20 12:35:52 +0200 |
commit | b6be81b841e34ca45b3549c4c79e886a8761e59a (patch) | |
tree | d90ff31ecf839f756268a715abe97bf5d6797e17 /mk/install.mk.in | |
parent | d97e60f5dfab102127b6fa4a5277084815136fc7 (diff) | |
download | haskell-b6be81b841e34ca45b3549c4c79e886a8761e59a.tar.gz |
Build system: delete half-baked Cygwin support
We only support building GHC on mys2 nowadays, see
https://ghc.haskell.org/trac/ghc/wiki/Building/Preparation/Windows.
This (partially) reverts various commits from a few years ago, among which:
* 5775d5142da227d65fb86994d363eb16841ee642
"Add OSTYPE build-system variable, and use it"
* 3fb8c431824aa2f3bd979e35d1a283546fcfbe74
"Fix building libgmp on cygwin"
* cdbb4720c424500adb57cbbef69721d0b039fa46
"Fix cmd invocation by libffi cuild system on Windows 7 cygwin"
* e8121501ee3549a35e954726ccfd871ac9d51f83
"Fix dblatex and xml* tool detection on Windows"
Reviewed by: austin, Phyx
Differential Revision: https://phabricator.haskell.org/D1155
Diffstat (limited to 'mk/install.mk.in')
-rw-r--r-- | mk/install.mk.in | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/mk/install.mk.in b/mk/install.mk.in index d6f68abd19..da6680d6b6 100644 --- a/mk/install.mk.in +++ b/mk/install.mk.in @@ -146,29 +146,8 @@ INSTALL_DOC = $(INSTALL) -m 644 $1 $2 $(call MK_INSTALL_DEST,$3) # Only 1 argument, the directory to create: INSTALL_DIR = $(INSTALL) -m 755 -d $(call MK_INSTALL_DEST,$1) -# cygwin's /bin/install doesn't set file modes correctly if the -# destination path is a C: style path: -# -# $ /bin/install -c -m 644 foo /cygdrive/c/cygwin/home/ian/foo2 -# $ /bin/install -c -m 644 foo c:/cygwin/home/ian/foo3 -# $ ls -l foo* -# -rw-r--r-- 1 ian None 0 2011-01-06 18:28 foo -# -rw-r--r-- 1 ian None 0 2011-01-06 18:29 foo2 -# -rwxrwxrwx 1 ian None 0 2011-01-06 18:29 foo3 -# -# This causes problems for bindisttest/checkBinaries.sh which then -# thinks that e.g. the userguide HTML files are binaries. -# -# We therefore use a /cygdrive path if we are on cygwin (only) -# (This will make a Cygwin build run slowly -# because of all those shell invocations.) -ifeq "$(OSTYPE)" "cygwin" -MK_INSTALL_DEST = $$(cygpath $1) -else MK_INSTALL_DEST = $1 -endif -# # runhaskell and hsc2hs are special, in that other compilers besides # GHC might provide them. Systems with a package manager often come # with tools to manage this kind of clash, e.g. RPM's |