diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-05-15 15:20:58 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-05-15 15:20:58 +0100 |
commit | efc515a55f704c1a5c73f7e0022c339e008ee11a (patch) | |
tree | 16d06cae6fb485dc7ae7a4d7f6e8d4e20a1f3ae8 /rules | |
parent | 41e5229c297f9ecad95dbbeeedf9feacdce39751 (diff) | |
download | haskell-efc515a55f704c1a5c73f7e0022c339e008ee11a.tar.gz |
Don't try to build bindist wrappers on Windows
Diffstat (limited to 'rules')
-rw-r--r-- | rules/shell-wrapper.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rules/shell-wrapper.mk b/rules/shell-wrapper.mk index 4f6795d159..b23e385035 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 |