summaryrefslogtreecommitdiff
path: root/hadrian/src/Flavour/Type.hs
diff options
context:
space:
mode:
Diffstat (limited to 'hadrian/src/Flavour/Type.hs')
-rw-r--r--hadrian/src/Flavour/Type.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/hadrian/src/Flavour/Type.hs b/hadrian/src/Flavour/Type.hs
index da236cbba3..a84ae77e79 100644
--- a/hadrian/src/Flavour/Type.hs
+++ b/hadrian/src/Flavour/Type.hs
@@ -14,8 +14,9 @@ import Data.Set (Set)
data Flavour = Flavour {
-- | Flavour name, to select this flavour from command line.
name :: String,
- -- | Use these command line arguments.
- args :: Args,
+ -- | Use these extra command line arguments.
+ -- This can't depend on the result of configuring a package (ie, using readContextData)
+ extraArgs :: Args,
-- | Build these packages.
packages :: Stage -> Action [Package],
-- | Bignum backend: 'native', 'gmp', 'ffi', etc.