From bcea7a0663d0c4ff6af2790d12816d57bb52ae2d Mon Sep 17 00:00:00 2001
From: simonm <unknown>
Date: Fri, 19 Dec 1997 16:21:46 +0000
Subject: [PATCH] [project @ 1997-12-19 16:21:46 by simonm] don't split objects
 for way "mr" too.

---
 mk/config.mk.in | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/mk/config.mk.in b/mk/config.mk.in
index 82c7dbf0dde2..2b124049990a 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -245,10 +245,14 @@ GhcLibWays=p
 #
 # ToDo: track down the source of this.
 #
-ifneq "$(strip $(way))" "p"
-GhcLibHcOpts= -O -split-objs -odir $*
-else
+ifeq "$(strip $(way))" "p"
+GhcLibHcOpts= -O
+else 
+ifeq "$(strip $(way))" "mr"
 GhcLibHcOpts= -O
+else
+GhcLibHcOpts= -O -split-objs -odir $*
+endif
 endif
 
 # what to include in a binary distribution
-- 
GitLab