git-annex.cabal: let the 'Fast' flag default to 'False' unless it's explicitly specified
The current use of the 'Fast' and 'Production' flags is both inconsistent and redundant. It's inconsistent, because users are allowed to specify both '-fFast -fProduction' at the same time -- thereby enabling two contradicting features. The flags are redundant, because Cabal allows users to specify '-O0' at configure time, which is essentially the same as '-fFast'. Since 'Production' is just the opposite of 'Fast', this means that neither flag is needed.
This commit is contained in:
parent
c993d8e710
commit
be6d9f6f5c
1 changed files with 1 additions and 0 deletions
|
@ -57,6 +57,7 @@ Flag Production
|
|||
|
||||
Flag Fast
|
||||
Description: Faster build; slower binary
|
||||
Default: False
|
||||
|
||||
Flag Android
|
||||
Description: Building for Android
|
||||
|
|
Loading…
Reference in a new issue