Repository : http://darcs.haskell.org/ghc.git/
On branch : master https://github.com/ghc/ghc/commit/efc515a55f704c1a5c73f7e0022c339e008ee11a >--------------------------------------------------------------- commit efc515a55f704c1a5c73f7e0022c339e008ee11a Author: Ian Lynagh <[email protected]> Date: Wed May 15 15:20:58 2013 +0100 Don't try to build bindist wrappers on Windows >--------------------------------------------------------------- rules/shell-wrapper.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules/shell-wrapper.mk b/rules/shell-wrapper.mk index 4f6795d..b23e385 100644 --- a/rules/shell-wrapper.mk +++ b/rules/shell-wrapper.mk @@ -89,6 +89,7 @@ install_$1_$2_wrapper: endif ifeq "$$($1_$2_WANT_BINDIST_WRAPPER)" "YES" +ifneq "$$(TargetOS_CPP)" "mingw32" $1_$2_BINDIST_WRAPPER = $1/$2/build/tmp/$$($1_$2_PROGNAME)-bindist @@ -106,6 +107,7 @@ endif $$(EXECUTABLE_FILE) $$@ endif +endif $(call profEnd, shell-wrapper($1,$2)) endef _______________________________________________ ghc-commits mailing list [email protected] http://www.haskell.org/mailman/listinfo/ghc-commits
