From abd0df2e11c3ba15a141de16f1d982c63113a3fe Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 20 Nov 2009 22:38:30 +0000 Subject: [PATCH] Install perl on Windows --- ghc.mk | 5 +++++ mk/tree.mk | 1 + 2 files changed, 6 insertions(+) diff --git a/ghc.mk b/ghc.mk index 3dece18..706136b 100644 --- a/ghc.mk +++ b/ghc.mk @@ -717,6 +717,11 @@ install : install_mingw install_mingw : $(INPLACE_MINGW) "$(CP)" -Rp $(INPLACE_MINGW) $(prefix) +install : install_perl +.PHONY: install_perl +install_perl : $(INPLACE_PERL) + "$(CP)" -Rp $(INPLACE_PERL) $(prefix) + endif # Windows ifneq "$(BINDIST)" "YES" diff --git a/mk/tree.mk b/mk/tree.mk index cd3988d..9fb305f 100644 --- a/mk/tree.mk +++ b/mk/tree.mk @@ -46,6 +46,7 @@ INPLACE_BIN = $(INPLACE)/bin INPLACE_LIB = $(INPLACE)/lib INPLACE_TOPDIR = $(INPLACE)/lib INPLACE_MINGW = $(INPLACE)/mingw +INPLACE_PERL = $(INPLACE)/perl # These are here, rather than in config.mk, as they need to exist in an # unconfigured tree so that the various clean targets can be used -- 1.7.10.4