From 3066cecc9311bdf188807c705cda73254785570a Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 15 Aug 2007 13:02:42 +0000 Subject: [PATCH] Fix building GHC with profiling --- compiler/Makefile.ghcbin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/Makefile.ghcbin b/compiler/Makefile.ghcbin index 1fcd42d..4008f25 100644 --- a/compiler/Makefile.ghcbin +++ b/compiler/Makefile.ghcbin @@ -38,10 +38,10 @@ endif endif ifeq "$(GhcThreaded)" "YES" -SRC_LD_OPTS += -threaded +SRC_HC_OPTS += -threaded endif ifeq "$(GhcProfiled)" "YES" -SRC_LD_OPTS += -prof +SRC_HC_OPTS += -prof endif odir=stage$(stage) -- 1.7.10.4