From 44ded53d8a8c054afd81396bc1763180d3fc33fb Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 21 Nov 2018 11:11:36 -0400 Subject: [PATCH] pass BUILDEROPTIONS to stack setup This is needed so the i386ancient build can pass --stack-yaml --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 149309f593..48111dd11c 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ tmp/configure-stamp: Build/TestConfig.hs Build/Configure.hs if [ "$(BUILDER)" != stack ]; then \ $(BUILDER) configure --ghc-options="$(shell Build/collect-ghc-options.sh)"; \ else \ - $(BUILDER) setup; \ + $(BUILDER) setup $(BUILDEROPTIONS); \ fi mkdir -p tmp touch tmp/configure-stamp