Skip to content

Commit

Permalink
Merge pull request #2759 from boutproject/fix-2758
Browse files Browse the repository at this point in the history
Ensure also lower case cmake options are accepted for boutconfig
  • Loading branch information
dschwoerer authored Oct 17, 2023
2 parents 123b677 + 7b234b6 commit ef4926b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pylib/boutconfig/__init__.py.cin
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ for k, v in config.items():
has = {}
for k in config:
if k.startswith("has_"):
has[k[4:]] = _yesno[config[k]]
has[k[4:]] = _yesno[config[k].upper()]


def isMetric2D():
Expand Down

0 comments on commit ef4926b

Please sign in to comment.