From b50a7f06b41bf3b8093fe24f5f2d13cc6ef7cce7 Mon Sep 17 00:00:00 2001 From: sof Date: Tue, 8 Mar 2005 19:13:27 +0000 Subject: [PATCH] [project @ 2005-03-08 19:13:27 by sof] explicitly use 'exeext' to avoid cygwin 'cp' weirdity --- ghc/utils/runghc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))" "" -- 1.7.10.4