Skip to content

Commit

Permalink
Fix handling of GNATCOLL_ICONV_OPT environment variable
Browse files Browse the repository at this point in the history
ref #1289
ref eng/recordflux/RecordFlux#1437
  • Loading branch information
jklmnn committed Oct 24, 2023
1 parent 4153905 commit 9f1191b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Support for SPARK Pro 24.0 (eng/recordflux/RecordFlux#1409)

### Fixed

- User defined `GNATCOLL_ICONV_OPT` environment variable is ignored (AdaCore/RecordFlux#1289, eng/recordflux/RecordFlux#1437)

### Removed

- Support for SPARK Pro Wavefront 20230905 (eng/recordflux/RecordFlux#1409)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def run(self) -> None:
"generated/adasat",
],
)
env["GNATCOLL_ICONV_OPT"] = "-v"
if "GNATCOLL_ICONV_OPT" not in env:
env["GNATCOLL_ICONV_OPT"] = "-v"
subprocess.run(
[
"gprbuild",
Expand Down

0 comments on commit 9f1191b

Please sign in to comment.