From: sof Date: Tue, 8 Mar 2005 19:13:27 +0000 (+0000) Subject: [project @ 2005-03-08 19:13:27 by sof] X-Git-Tag: Initial_conversion_from_CVS_complete~941 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=b50a7f06b41bf3b8093fe24f5f2d13cc6ef7cce7 [project @ 2005-03-08 19:13:27 by sof] explicitly use 'exeext' to avoid cygwin 'cp' weirdity --- diff --git a/ghc/utils/runghc/Makefile b/ghc/utils/runghc/Makefile index cd2f607..6a42fa7 100644 --- a/ghc/utils/runghc/Makefile +++ b/ghc/utils/runghc/Makefile @@ -1,7 +1,7 @@ TOP=../.. include $(TOP)/mk/boilerplate.mk -HS_PROG = runghc +HS_PROG = runghc$(exeext) INSTALL_PROGS += $(HS_PROG) UseGhcForCc = YES @@ -34,7 +34,7 @@ SRC_MKDEPENDHS_OPTS += \ all :: runhaskell runhaskell : $(HS_PROG) - $(CP) $< runhaskell + $(CP) $< runhaskell$(exeext) # Only install runhaskell if there isn't already one installed ifneq "$(findstring install, $(MAKECMDGOALS))" ""