summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-04-03 13:01:24 +0100
committerIan Lynagh <ian@well-typed.com>2013-04-03 13:01:24 +0100
commit9d33fc3c55fe5f45ebaec5f2031e63813a2ba27a (patch)
tree2d98aaa63bdb76911380d8ba863d981456be55e6
parent6b431ab4e108b156d3da01c2b2c97a4313e5ebbb (diff)
downloadhaskell-9d33fc3c55fe5f45ebaec5f2031e63813a2ba27a.tar.gz
In build.mk.sample, include v in GhcLibWays even if DYNAMIC_GHC_PROGRAMS is set
Although it's not technically needed, it's less confusing if the vanilla way works when people use the sample build.mk.
-rw-r--r--mk/build.mk.sample2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/build.mk.sample b/mk/build.mk.sample
index 338eefb573..e1355cd150 100644
--- a/mk/build.mk.sample
+++ b/mk/build.mk.sample
@@ -33,7 +33,7 @@
# A development build, working on the stage 2 compiler:
#BuildFlavour = devel2
-GhcLibWays = $(if $(filter $(DYNAMIC_GHC_PROGRAMS),YES),dyn,v)
+GhcLibWays = $(if $(filter $(DYNAMIC_GHC_PROGRAMS),YES),v dyn,v)
# Uncomment this to get prettier build output.
# Please use V = 1 when reporting GHC bugs.